[build] Avoid invoking genkeymap.py via Perl

The build process currently invokes the Python genkeymap.py script via
the Perl executable.  Strangely, this appears to work.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
pull/591/head
Michael Brown 2022-02-15 13:54:28 +00:00
parent 510f9de0a2
commit 5aee6b81d7
2 changed files with 2 additions and 1 deletions

View File

@ -24,6 +24,7 @@ CP := cp
ECHO := echo
PRINTF := printf
PERL := perl
PYTHON := python
TRUE := true
CC := $(CROSS_COMPILE)gcc
CPP := $(CC) -E

View File

@ -1563,7 +1563,7 @@ endif # defined(BIN)
#
hci/keymap/keymap_%.c :
$(Q)$(PERL) $(GENKEYMAP) $* > $@
$(Q)$(PYTHON) $(GENKEYMAP) $* > $@
###############################################################################
#