diff options
| author | Ruslan Ermilov <ru@FreeBSD.org> | 2003-04-13 16:26:31 +0000 |
|---|---|---|
| committer | Ruslan Ermilov <ru@FreeBSD.org> | 2003-04-13 16:26:31 +0000 |
| commit | 692ebfe975d47cf9c1c64f3e8c49621dbd1edd51 (patch) | |
| tree | 38a86af19a0ceb9a8a26a551b143edf85d7a3d46 | |
| parent | da54b929c3f63d07d5a7fcb34ba4ed0ca7e4aaeb (diff) | |
Notes
| -rw-r--r-- | Makefile.inc1 | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1 index 89c6b725edda..750807d2cf44 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -650,10 +650,15 @@ _uudecode= usr.bin/uudecode _xargs= usr.bin/xargs .endif +.if ( ${BOOTSTRAPPING} < 430002 || \ + ( ${BOOTSTRAPPING} >= 500000 && ${BOOTSTRAPPING} < 500018 )) +_yacc= usr.bin/yacc +.endif + bootstrap-tools: -.for _tool in ${_strfile} usr.bin/yacc usr.bin/colldef \ +.for _tool in ${_strfile} usr.bin/colldef \ usr.bin/makewhatis usr.bin/rpcgen ${_uudecode} \ - ${_xargs} usr.bin/xinstall \ + ${_xargs} usr.bin/xinstall ${_yacc} \ usr.sbin/config usr.sbin/kbdcontrol \ gnu/usr.bin/gperf gnu/usr.bin/groff gnu/usr.bin/texinfo @${ECHODIR} "===> ${_tool}"; \ |
