svn commit: r324555 - head/sys/boot/i386/zfsboot

Warner Losh imp at FreeBSD.org
Thu Oct 12 14:57:01 UTC 2017


Author: imp
Date: Thu Oct 12 14:57:00 2017
New Revision: 324555
URL: https://svnweb.freebsd.org/changeset/base/324555

Log:
  Honor CFLAGS modifications in Makefile.inc by using += here.  There's
  no hyper-small space constraints, so there's no reason to tightly
  control it.
  
  Sponsored by: Netflix

Modified:
  head/sys/boot/i386/zfsboot/Makefile

Modified: head/sys/boot/i386/zfsboot/Makefile
==============================================================================
--- head/sys/boot/i386/zfsboot/Makefile	Thu Oct 12 14:56:54 2017	(r324554)
+++ head/sys/boot/i386/zfsboot/Makefile	Thu Oct 12 14:57:00 2017	(r324555)
@@ -18,7 +18,7 @@ REL1=	0x700
 ORG1=	0x7c00
 ORG2=	0x2000
 
-CFLAGS=	-DBOOTPROG=\"zfsboot\" \
+CFLAGS+=-DBOOTPROG=\"zfsboot\" \
 	-O1 \
 	-DZFS -DBOOT2 \
 	-DSIOPRT=${BOOT_COMCONSOLE_PORT} \


More information about the svn-src-all mailing list