mirror of
https://github.com/ipxe/ipxe
synced 2026-02-09 15:21:29 +03:00
[build] Avoid hard-coding the path to perl
The path "/usr/bin/perl" has been hard-coded since Etherboot 5.1, for no discernible reason. Use just "perl" instead to fix the inconsistency and allow building on systems with Perl installed outside of /usr/bin. Reported-by: Gabor Z. Papp <gzp@papp.hu> Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
@@ -20,7 +20,7 @@ MKDIR := mkdir
|
|||||||
CP := cp
|
CP := cp
|
||||||
ECHO := echo
|
ECHO := echo
|
||||||
PRINTF := printf
|
PRINTF := printf
|
||||||
PERL := /usr/bin/perl
|
PERL := perl
|
||||||
CC := $(CROSS_COMPILE)gcc
|
CC := $(CROSS_COMPILE)gcc
|
||||||
CPP := $(CC) -E
|
CPP := $(CC) -E
|
||||||
AS := $(CROSS_COMPILE)as
|
AS := $(CROSS_COMPILE)as
|
||||||
|
|||||||
Reference in New Issue
Block a user