summaryrefslogtreecommitdiff
path: root/bin/csh
diff options
context:
space:
mode:
authorBryan Drewery <bdrewery@FreeBSD.org>2016-06-14 16:19:49 +0000
committerBryan Drewery <bdrewery@FreeBSD.org>2016-06-14 16:19:49 +0000
commit45e1479f954b6f8a3760096fc2f5b798671c744b (patch)
tree938838f1d5c08191ffd3665ebd493771e6c1a62f /bin/csh
parent447bb5a3bdc87f6d8ba268e7372033970bdc84c4 (diff)
downloadsrc-test-45e1479f954b6f8a3760096fc2f5b798671c744b.tar.gz
src-test-45e1479f954b6f8a3760096fc2f5b798671c744b.zip
WITH_META_MODE: Fix bin/csh rebuilding tc.const.h
This is the same issue as r297997, but was missed in it. The WARNS value changes between 'build-tools' (MK_WARNS=no) and 'everything' resulting in a rebuild of this file. Approved by: re (implicit) Sponsored by: EMC / Isilon Storage Division
Notes
Notes: svn path=/head/; revision=301881
Diffstat (limited to 'bin/csh')
-rw-r--r--bin/csh/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/csh/Makefile b/bin/csh/Makefile
index 3dbd0b5c04627..e43de0770a567 100644
--- a/bin/csh/Makefile
+++ b/bin/csh/Makefile
@@ -136,7 +136,7 @@ sh.err.h: sh.err.c
grep 'ERR_' ${.ALLSRC} | grep '^#define' >> ${.TARGET}
@echo '#endif /* _h_sh_err */' >> ${.TARGET}
-tc.const.h: tc.const.c sh.char.h config.h config_f.h sh.types.h sh.err.h
+tc.const.h: tc.const.c sh.char.h config.h config_f.h sh.types.h sh.err.h ${BUILD_TOOLS_META}
@rm -f ${.TARGET}
@echo '/* Do not edit this file, make creates it. */' > ${.TARGET}
@echo '#ifndef _h_tc_const' >> ${.TARGET}