diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-05-07 13:17:31 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-05-07 13:17:31 -0700 |
commit | dc813f664d779330c392500a0f3b4d53893dc7ae (patch) | |
tree | ee84fc963a43dfd2e055aa311833c3625bb09a18 /git-svn.perl | |
parent | 6a88021e4675b69b927ce1aa9c4dddc5dc621232 (diff) | |
parent | 0754e089c1ffc6a40574eee0564ef98b3acacc26 (diff) | |
download | git-dc813f664d779330c392500a0f3b4d53893dc7ae.tar.gz git-dc813f664d779330c392500a0f3b4d53893dc7ae.tar.xz |
Merge branch 'jk/maint-gitweb-test-use-sane-perl' into maint
When using a Perl script on a system where "perl" found on user's $PATH
could be ancient or otherwise broken, we allow builders to specify the
path to a good copy of Perl with $PERL_PATH. The gitweb test forgot to
use that Perl when running its test.
By Jeff King (1) and Zbigniew Jędrzejewski-Szmek (1)
* jk/maint-gitweb-test-use-sane-perl:
Consistently use perl from /usr/bin/ for scripts
t/gitweb-lib: use $PERL_PATH to run gitweb
Diffstat (limited to 'git-svn.perl')
-rwxr-xr-x | git-svn.perl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-svn.perl b/git-svn.perl index 4334b95f7..ca038ec84 100755 --- a/git-svn.perl +++ b/git-svn.perl @@ -1,4 +1,4 @@ -#!/usr/bin/env perl +#!/usr/bin/perl # Copyright (C) 2006, Eric Wong <normalperson@yhbt.net> # License: GPL v2 or later use 5.008; |