svn commit: r325174 - head/sys/boot/ficl

Warner Losh imp at FreeBSD.org
Mon Oct 30 23:14:54 UTC 2017


Author: imp
Date: Mon Oct 30 23:14:53 2017
New Revision: 325174
URL: https://svnweb.freebsd.org/changeset/base/325174

Log:
  Minor cleanup
  
  Remove ancient comment about words to maybe add to the builds as
  softwords. We're not going to bring them in, so delete the noise.
  Also, check to see if HAVE_PNP is defined rather than if its value is
  true.
  
  Sponsored by: Netflix

Modified:
  head/sys/boot/ficl/Makefile

Modified: head/sys/boot/ficl/Makefile
==============================================================================
--- head/sys/boot/ficl/Makefile	Mon Oct 30 23:14:48 2017	(r325173)
+++ head/sys/boot/ficl/Makefile	Mon Oct 30 23:14:53 2017	(r325174)
@@ -13,7 +13,7 @@ CLEANFILES=	softcore.c testmain testmain.o
     (${MACHINE_CPUARCH} == "amd64" && defined(FICL32))
 CFLAGS+=	-march=i386
 .endif
-.if HAVE_PNP
+.if defined(HAVE_PNP)
 CFLAGS+=	-DHAVE_PNP
 .endif
 .include <bsd.stand.mk>
@@ -32,8 +32,6 @@ INTERNALLIB=
 .PATH: ${FICLSRC}/softwords
 SOFTWORDS=	softcore.fr jhlocal.fr marker.fr freebsd.fr ficllocal.fr \
 		ifbrack.fr
-# Optional OO extension softwords
-#SOFTWORDS+=	oo.fr classes.fr
 
 softcore.c: ${SOFTWORDS} softcore.awk
 	(cd ${FICLSRC}/softwords; cat ${SOFTWORDS} \


More information about the svn-src-head mailing list