diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2015-10-15 05:26:11 +0000 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2015-10-15 05:26:11 +0000 |
commit | 7da5ecb17db130dc5d4003e5d666e66123398475 (patch) | |
tree | 93312130264ed2b942eff587a103c59906ff955b /Makefile.inc1 | |
parent | 4e7945e48ed65cb55ef9f9faea35fcf7c94e26b2 (diff) | |
download | FreeBSD-src-7da5ecb17db130dc5d4003e5d666e66123398475.zip FreeBSD-src-7da5ecb17db130dc5d4003e5d666e66123398475.tar.gz |
Add temporary workaround for .MAKE being applied to _worldtmp, since r251750.
This was causing files to be removed from the objdir when -n was used.
_worldtmp makes no sub-make calls.
A more comprehensive solution is coming involving fine-grained '+' where
appropriate.
Sponsored by: EMC / Isilon Storage Division
MFC after: 1 week
Diffstat (limited to 'Makefile.inc1')
-rw-r--r-- | Makefile.inc1 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1 index 5d1917c..4e6a873 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -1062,7 +1062,7 @@ INSTALLKERNEL= ${_kernel} .endif .endfor -buildkernel ${WMAKE_TGTS} ${.ALLTARGETS:M_*}: .MAKE +buildkernel ${WMAKE_TGTS:N_worldtmp} ${.ALLTARGETS:M_*:N_worldtmp}: .MAKE # # buildkernel |