svn commit: r301881 - head/bin/csh

Bryan Drewery bdrewery at FreeBSD.org
Tue Jun 14 16:19:50 UTC 2016


Author: bdrewery
Date: Tue Jun 14 16:19:49 2016
New Revision: 301881
URL: https://svnweb.freebsd.org/changeset/base/301881

Log:
  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

Modified:
  head/bin/csh/Makefile

Modified: head/bin/csh/Makefile
==============================================================================
--- head/bin/csh/Makefile	Tue Jun 14 16:19:44 2016	(r301880)
+++ head/bin/csh/Makefile	Tue Jun 14 16:19:49 2016	(r301881)
@@ -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}


More information about the svn-src-all mailing list