diff options
author | Michael Brown | 2010-06-24 02:23:00 +0200 |
---|---|---|
committer | Michael Brown | 2010-06-24 02:23:00 +0200 |
commit | ea12dc0ec3256bf9c9de396a2cd8b03824638890 (patch) | |
tree | 5fe731b27ce1240519007d17fd7c1a1678f6848a /src/Makefile | |
parent | [efi] Build iPXE script support into EFI binaries by default (diff) | |
download | ipxe-ea12dc0ec3256bf9c9de396a2cd8b03824638890.tar.gz ipxe-ea12dc0ec3256bf9c9de396a2cd8b03824638890.tar.xz ipxe-ea12dc0ec3256bf9c9de396a2cd8b03824638890.zip |
[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>
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index f81c4331..3d92c4f3 100644 --- a/src/Makefile +++ b/src/Makefile @@ -20,7 +20,7 @@ MKDIR := mkdir CP := cp ECHO := echo PRINTF := printf -PERL := /usr/bin/perl +PERL := perl CC := $(CROSS_COMPILE)gcc CPP := $(CC) -E AS := $(CROSS_COMPILE)as |