Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 30 Oct 2017 23:14:53 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r325174 - head/sys/boot/ficl
Message-ID:  <201710302314.v9UNErGN025981@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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} \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201710302314.v9UNErGN025981>