diff options
author | Simon J. Gerraty <sjg@FreeBSD.org> | 2013-02-16 01:20:56 +0000 |
---|---|---|
committer | Simon J. Gerraty <sjg@FreeBSD.org> | 2013-02-16 01:20:56 +0000 |
commit | 5ac3e457ef3bfd546bf690ab1896744d98fb80ef (patch) | |
tree | b5cfe8ec51bd02f6f16a87986abce7ace3576956 | |
parent | 6bc671bb672ff8850055b58e9151b841e71ce60d (diff) | |
download | src-5ac3e457ef3bfd546bf690ab1896744d98fb80ef.tar.gz src-5ac3e457ef3bfd546bf690ab1896744d98fb80ef.zip |
We may only have INCSLINKS, and STAGE_SYMLINKS should all be full paths.
Notes
Notes:
svn path=/projects/bmake/; revision=246867
-rw-r--r-- | share/mk/bsd.incs.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/mk/bsd.incs.mk b/share/mk/bsd.incs.mk index 2546dfdd8df8..9d614be4a2a9 100644 --- a/share/mk/bsd.incs.mk +++ b/share/mk/bsd.incs.mk @@ -97,10 +97,10 @@ buildincludes: stage_files .if !empty(STAGE_AS_SETS) buildincludes: stage_as .endif +.endif .if !empty(INCSLINKS) stage_files: stage_symlinks -STAGE_SYMLINKS.INCS= ${INCSLINKS:S,${INCSDIR}/,,} -.endif +STAGE_SYMLINKS.INCS= ${INCSLINKS} .endif .endif .endif |