mirror of https://github.com/ipxe/ipxe.git
[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
parent
510f9de0a2
commit
5aee6b81d7
|
@ -24,6 +24,7 @@ CP := cp
|
|||
ECHO := echo
|
||||
PRINTF := printf
|
||||
PERL := perl
|
||||
PYTHON := python
|
||||
TRUE := true
|
||||
CC := $(CROSS_COMPILE)gcc
|
||||
CPP := $(CC) -E
|
||||
|
|
|
@ -1563,7 +1563,7 @@ endif # defined(BIN)
|
|||
#
|
||||
|
||||
hci/keymap/keymap_%.c :
|
||||
$(Q)$(PERL) $(GENKEYMAP) $* > $@
|
||||
$(Q)$(PYTHON) $(GENKEYMAP) $* > $@
|
||||
|
||||
###############################################################################
|
||||
#
|
||||
|
|
Loading…
Reference in New Issue