aboutsummaryrefslogtreecommitdiff
path: root/Makefile.inc1
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2016-03-28 19:51:45 +0000
committerEd Maste <emaste@FreeBSD.org>2016-03-28 19:51:45 +0000
commit915d57ae35676f6045dc6e84aff5b4c93a6bb02e (patch)
tree740fcc7eeddc957b87350cf8edae111da78072bd /Makefile.inc1
parenta08b29253d6056ad51356961bba850c35f34a9e9 (diff)
downloadsrc-915d57ae35676f6045dc6e84aff5b4c93a6bb02e.tar.gz
src-915d57ae35676f6045dc6e84aff5b4c93a6bb02e.zip
simplify compile-time default keyboard map generation
In r296926 the -P <path> option was added to kbdcontrol, which enables this change for a simplified compile-time default keymap build process. PR: 193865 Reviewed by: Oliver Pinter Tested by: Oliver Pinter MFC After: 1 month Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D5708
Notes
Notes: svn path=/head/; revision=297363
Diffstat (limited to 'Makefile.inc1')
-rw-r--r--Makefile.inc16
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1
index 71006bc014da..ae9019721165 100644
--- a/Makefile.inc1
+++ b/Makefile.inc1
@@ -1361,6 +1361,11 @@ _crunch= usr.sbin/crunch
_awk= usr.bin/awk
.endif
+# r296926 -P keymap search path
+.if ${BOOTSTRAPPING} < 1100103
+_kbdcontrol= usr.sbin/kbdcontrol
+.endif
+
_yacc= lib/liby \
usr.bin/yacc
@@ -1425,6 +1430,7 @@ bootstrap-tools: .PHONY
${_awk} \
${_cat} \
${_dd} \
+ ${_kbdcontrol} \
usr.bin/lorder \
${_libopenbsd} \
${_makewhatis} \