diff options
author | ru <ru@FreeBSD.org> | 2003-04-14 14:46:13 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2003-04-14 14:46:13 +0000 |
commit | 3ff8bde4fafdfb376b4404e508b0e6f248a1d559 (patch) | |
tree | 006ab1f31e73b78958093cd490bd61d585bfada8 /Makefile.inc1 | |
parent | 64f4176c9e22be167623f8ce09e094ec29b04e34 (diff) | |
download | FreeBSD-src-3ff8bde4fafdfb376b4404e508b0e6f248a1d559.zip FreeBSD-src-3ff8bde4fafdfb376b4404e508b0e6f248a1d559.tar.gz |
kbdcontrol.c rev. 1.35 and onwards support the KEYMAP_PATH
environment variable, and don't need to be bootstrapped.
Diffstat (limited to 'Makefile.inc1')
-rw-r--r-- | Makefile.inc1 | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1 index 750807d..78749d7 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -655,11 +655,15 @@ _xargs= usr.bin/xargs _yacc= usr.bin/yacc .endif +.if ${BOOTSTRAPPING} < 500019 +_kbdcontrol= usr.sbin/kbdcontrol +.endif + bootstrap-tools: .for _tool in ${_strfile} usr.bin/colldef \ usr.bin/makewhatis usr.bin/rpcgen ${_uudecode} \ ${_xargs} usr.bin/xinstall ${_yacc} \ - usr.sbin/config usr.sbin/kbdcontrol \ + usr.sbin/config ${_kbdcontrol} \ gnu/usr.bin/gperf gnu/usr.bin/groff gnu/usr.bin/texinfo @${ECHODIR} "===> ${_tool}"; \ cd ${.CURDIR}/${_tool}; \ |