From: Bryan Larsen Date: Thu, 3 May 2007 22:58:56 +0000 (-0400) Subject: Allow PERL_PATH="/usr/bin/env perl" X-Git-Tag: v1.5.2-rc2~5^2~3 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=5318f69812b3a06326524852d965e6a79fa52f85;p=git-core%2Fgit.git Allow PERL_PATH="/usr/bin/env perl" There is a mechanism PERL_PATH in the Makefile to specify path to Perl binary, but sometimes it is convenient to let 'env' figure out where Perl comes from, with PERL_PATH="/usr/bin/env perl". Allowing this would make things easier to MacPorts, where we wish to work with the MacPorts perl if it is installed, but fall back to the system perl if it isn't. Signed-off-by: Bryan Larsen Signed-off-by: Junio C Hamano --- diff --git a/perl/Makefile b/perl/Makefile index 17d004e5a..0d695fd2f 100644 --- a/perl/Makefile +++ b/perl/Makefile @@ -33,7 +33,7 @@ $(makfile): ../GIT-CFLAGS Makefile echo ' echo $(instdir_SQ)' >> $@ else $(makfile): Makefile.PL ../GIT-CFLAGS - '$(PERL_PATH_SQ)' $< PREFIX='$(prefix_SQ)' + $(PERL_PATH) $< PREFIX='$(prefix_SQ)' endif # this is just added comfort for calling make directly in perl dir