diff options
author | Warner Losh <imp@FreeBSD.org> | 2017-10-12 14:57:00 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2017-10-12 14:57:00 +0000 |
commit | cd955ec800c72245c48af837ac507e8137b3c9fe (patch) | |
tree | 84a238160294d6b38e490acbdf53aaf78c96f972 | |
parent | 6f0970a4c6ac3982af738ab44330a35dd4f8bd30 (diff) |
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
Notes
Notes:
svn path=/head/; revision=324555
-rw-r--r-- | sys/boot/i386/zfsboot/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/boot/i386/zfsboot/Makefile b/sys/boot/i386/zfsboot/Makefile index ae4ec19d5b1e..304263342466 100644 --- a/sys/boot/i386/zfsboot/Makefile +++ b/sys/boot/i386/zfsboot/Makefile @@ -18,7 +18,7 @@ REL1= 0x700 ORG1= 0x7c00 ORG2= 0x2000 -CFLAGS= -DBOOTPROG=\"zfsboot\" \ +CFLAGS+=-DBOOTPROG=\"zfsboot\" \ -O1 \ -DZFS -DBOOT2 \ -DSIOPRT=${BOOT_COMCONSOLE_PORT} \ |