Browse Source

[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>
tags/v1.20.1
Michael Brown 14 years ago
parent
commit
ea12dc0ec3
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/Makefile

+ 1
- 1
src/Makefile View File

@@ -20,7 +20,7 @@ MKDIR		:= mkdir
20 20
 CP		:= cp
21 21
 ECHO		:= echo
22 22
 PRINTF		:= printf
23
-PERL		:= /usr/bin/perl
23
+PERL		:= perl
24 24
 CC		:= $(CROSS_COMPILE)gcc
25 25
 CPP		:= $(CC) -E
26 26
 AS		:= $(CROSS_COMPILE)as

Loading…
Cancel
Save