svn commit: r348686 - stable/12/stand/powerpc
Leandro Lupori
luporl at FreeBSD.org
Wed Jun 5 12:53:37 UTC 2019
Author: luporl
Date: Wed Jun 5 12:53:36 2019
New Revision: 348686
URL: https://svnweb.freebsd.org/changeset/base/348686
Log:
MFC r348028:
stand/powerpc: Only build loader.kboot for powerpc64
kboot is only made for powerpc64 systems, not 32-bit systems.
This unbreaks the build for powerpcspe.
Reported by: ngie
Modified:
stable/12/stand/powerpc/Makefile
Directory Properties:
stable/12/ (props changed)
Modified: stable/12/stand/powerpc/Makefile
==============================================================================
--- stable/12/stand/powerpc/Makefile Wed Jun 5 12:43:45 2019 (r348685)
+++ stable/12/stand/powerpc/Makefile Wed Jun 5 12:53:36 2019 (r348686)
@@ -5,6 +5,9 @@ NO_OBJ=t
.include <bsd.init.mk>
SUBDIR.yes= boot1.chrp ofw uboot
+
+.if "${TARGET_ARCH}" == "powerpc64"
SUBDIR.${MK_FDT}+= kboot
+.endif
.include <bsd.subdir.mk>
More information about the svn-src-all
mailing list