svn commit: r347062 - head/stand/efi/boot1
Warner Losh
imp at FreeBSD.org
Fri May 3 21:13:11 UTC 2019
Author: imp
Date: Fri May 3 21:13:09 2019
New Revision: 347062
URL: https://svnweb.freebsd.org/changeset/base/347062
Log:
Use SRC+= rather than SRC=
To allow boot1/Makefile to be included, use SRC+= rathern than SRC=
so the including Makefile can add additional sources to the build.
Modified:
head/stand/efi/boot1/Makefile
Modified: head/stand/efi/boot1/Makefile
==============================================================================
--- head/stand/efi/boot1/Makefile Fri May 3 21:13:04 2019 (r347061)
+++ head/stand/efi/boot1/Makefile Fri May 3 21:13:09 2019 (r347062)
@@ -25,7 +25,7 @@ CWARNFLAGS.zfs_module.c += -Wno-unused-parameter
CWARNFLAGS.zfs_module.c += -Wno-unused-function
# architecture-specific loader code
-SRCS= boot1.c self_reloc.c start.S ufs_module.c
+SRCS+= boot1.c self_reloc.c start.S ufs_module.c
.if ${MK_LOADER_ZFS} != "no"
SRCS+= zfs_module.c
CFLAGS.zfs_module.c+= -I${ZFSSRC}
More information about the svn-src-all
mailing list