svn commit: r276145 - in head/sys/boot: arm/uboot powerpc/uboot

Ian Lepore ian at FreeBSD.org
Tue Dec 23 15:42:36 UTC 2014


Author: ian
Date: Tue Dec 23 15:42:34 2014
New Revision: 276145
URL: https://svnweb.freebsd.org/changeset/base/276145

Log:
  Convert a couple lingering NO_FORTH conditionals to test MK_FORTH.

Modified:
  head/sys/boot/arm/uboot/Makefile
  head/sys/boot/powerpc/uboot/Makefile

Modified: head/sys/boot/arm/uboot/Makefile
==============================================================================
--- head/sys/boot/arm/uboot/Makefile	Tue Dec 23 15:42:33 2014	(r276144)
+++ head/sys/boot/arm/uboot/Makefile	Tue Dec 23 15:42:34 2014	(r276145)
@@ -76,7 +76,7 @@ LIBUBOOT_FDT=	${.OBJDIR}/../../uboot/fdt
 LIBFDT=		${.OBJDIR}/../../fdt/libfdt.a
 .endif
 
-.if !defined(NO_FORTH)
+.if ${MK_FORTH} != "no"
 # Enable BootForth
 BOOT_FORTH=	yes
 CFLAGS+=	-DBOOT_FORTH -I${.CURDIR}/../../ficl -I${.CURDIR}/../../ficl/arm

Modified: head/sys/boot/powerpc/uboot/Makefile
==============================================================================
--- head/sys/boot/powerpc/uboot/Makefile	Tue Dec 23 15:42:33 2014	(r276144)
+++ head/sys/boot/powerpc/uboot/Makefile	Tue Dec 23 15:42:34 2014	(r276145)
@@ -66,7 +66,7 @@ LIBUBOOT_FDT=	${.OBJDIR}/../../uboot/fdt
 LIBFDT=		${.OBJDIR}/../../fdt/libfdt.a
 .endif
 
-.if !defined(NO_FORTH)
+.if ${MK_FORTH} != "no"
 # Enable BootForth
 BOOT_FORTH=	yes
 CFLAGS+=	-DBOOT_FORTH -I${.CURDIR}/../../ficl -I${.CURDIR}/../../ficl/powerpc


More information about the svn-src-head mailing list