svn commit: r324133 - stable/11
Ngie Cooper
ngie at FreeBSD.org
Sat Sep 30 20:06:46 UTC 2017
Author: ngie
Date: Sat Sep 30 20:06:44 2017
New Revision: 324133
URL: https://svnweb.freebsd.org/changeset/base/324133
Log:
MFC r322951:
Respect MK_TCSH with build-tools and native-xtools
This helps reduce the WORLDTMP footprint slightly.
Based on a patch I submitted 5 years ago to GNATS.
PR: 174051
Relnotes: yes (anyone who cross-builds with MK_TCSH=yes will run into
build failures if the host doesn't have tcsh(1))
Reminded by: Fabian Keil <fk at fabiankeil.de>
Modified:
stable/11/Makefile.inc1
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/Makefile.inc1
==============================================================================
--- stable/11/Makefile.inc1 Sat Sep 30 20:06:36 2017 (r324132)
+++ stable/11/Makefile.inc1 Sat Sep 30 20:06:44 2017 (r324133)
@@ -1780,8 +1780,12 @@ _gcc_tools= gnu/usr.bin/cc/cc_tools
_rescue=rescue/rescue
.endif
+.if ${MK_TCSH} != "no"
+_tcsh=bin/csh
+.endif
+
.for _tool in \
- bin/csh \
+ ${_tcsh} \
bin/sh \
${LOCAL_TOOL_DIRS} \
lib/ncurses/ncurses \
@@ -1938,7 +1942,7 @@ native-xtools: .PHONY
bin/cat \
bin/chmod \
bin/cp \
- bin/csh \
+ ${_tcsh} \
bin/echo \
bin/expr \
bin/hostname \
More information about the svn-src-stable
mailing list