Author: jhibbits
Date: Tue May 21 01:42:57 2019
New Revision: 348028
URL: https://svnweb.freebsd.org/changeset/base/348028
Log:
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:
head/stand/powerpc/Makefile
Modified: head/stand/powerpc/Makefile
==============================================================================
--- head/stand/powerpc/Makefile Tue May 21 01:27:08 2019 (r348027)
+++ head/stand/powerpc/Makefile Tue May 21 01:42:57 2019 (r348028)
@@ -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>
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"