Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 14 Jun 2016 16:19:49 +0000 (UTC)
From:      Bryan Drewery <bdrewery@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r301881 - head/bin/csh
Message-ID:  <201606141619.u5EGJniM008016@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201606141619.u5EGJniM008016>