diff options
author | ru <ru@FreeBSD.org> | 2003-04-13 16:05:28 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2003-04-13 16:05:28 +0000 |
commit | d684a7cc03107684805e340309cdde28fdfb5994 (patch) | |
tree | b83a3f6e41f67a9271b6d9b33d414dbccdc9f614 /Makefile.inc1 | |
parent | bbfe17206ab642430c20bc9cd2aa2bbcced30eb5 (diff) | |
download | FreeBSD-src-d684a7cc03107684805e340309cdde28fdfb5994.zip FreeBSD-src-d684a7cc03107684805e340309cdde28fdfb5994.tar.gz |
xargs.c rev. 1.10 in HEAD and rev. 1.9.2.1 in RELENG_4,
and onwards, have support for the -J option we need.
Diffstat (limited to 'Makefile.inc1')
-rw-r--r-- | Makefile.inc1 | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1 index 45f4579..89c6b72 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -645,10 +645,15 @@ _strfile= games/fortune/strfile _uudecode= usr.bin/uudecode .endif +.if ( ${BOOTSTRAPPING} < 430002 || \ + ( ${BOOTSTRAPPING} >= 500000 && ${BOOTSTRAPPING} < 500019 )) +_xargs= usr.bin/xargs +.endif + bootstrap-tools: .for _tool in ${_strfile} usr.bin/yacc usr.bin/colldef \ usr.bin/makewhatis usr.bin/rpcgen ${_uudecode} \ - usr.bin/xargs usr.bin/xinstall \ + ${_xargs} usr.bin/xinstall \ usr.sbin/config usr.sbin/kbdcontrol \ gnu/usr.bin/gperf gnu/usr.bin/groff gnu/usr.bin/texinfo @${ECHODIR} "===> ${_tool}"; \ |