From: Michael Brown Date: Thu, 24 Jun 2010 00:23:00 +0000 (+0100) Subject: [build] Avoid hard-coding the path to perl X-Git-Tag: v1.20.1~2629 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ea12dc0;p=thirdparty%2Fipxe.git [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 Signed-off-by: Michael Brown --- diff --git a/src/Makefile b/src/Makefile index f81c43315..3d92c4f3e 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