Quellcode durchsuchen

[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 vor 14 Jahren
Ursprung
Commit
ea12dc0ec3
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1
    1
      src/Makefile

+ 1
- 1
src/Makefile Datei anzeigen

@@ -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

Laden…
Abbrechen
Speichern