diff options
author | Warner Losh <imp@FreeBSD.org> | 2019-05-03 21:13:09 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2019-05-03 21:13:09 +0000 |
commit | 1f6ba72eb403f27c50436ef02af8e5a95ef30a93 (patch) | |
tree | 0fa2aa4ff364263576d998c2cac9064881e4e0ce /stand/efi | |
parent | ce2403e6725bc92bd66e1513880e3cab89fa2a48 (diff) | |
download | src-1f6ba72eb403f27c50436ef02af8e5a95ef30a93.tar.gz src-1f6ba72eb403f27c50436ef02af8e5a95ef30a93.zip |
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.
Notes
Notes:
svn path=/head/; revision=347062
Diffstat (limited to 'stand/efi')
-rw-r--r-- | stand/efi/boot1/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stand/efi/boot1/Makefile b/stand/efi/boot1/Makefile index 68695c30d779..7b945461e8d3 100644 --- a/stand/efi/boot1/Makefile +++ b/stand/efi/boot1/Makefile @@ -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} |