summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Vilain <sam.vilain@catalyst.net.nz>2009-10-20 02:42:00 (GMT)
committerEric Wong <normalperson@yhbt.net>2009-10-27 06:49:02 (GMT)
commita5e9c7dfe4732b560ab5dfc75e718bfda2027990 (patch)
treeb85ee5ad1f286070a9ad30e0db10f414a5b5cc5e
parentcb74a0ca61278b97d9e12af9ed9f7040ab13f507 (diff)
downloadgit-a5e9c7dfe4732b560ab5dfc75e718bfda2027990.zip
git-a5e9c7dfe4732b560ab5dfc75e718bfda2027990.tar.gz
git-a5e9c7dfe4732b560ab5dfc75e718bfda2027990.tar.bz2
git-svn: allow test setup script to support PERL env. var
Possibly the 'perl' in the PATH is not the one to be used for the tests; let PERL set in the environment select it. Signed-off-by: Sam Vilain <sam.vilain@catalyst.net.nz> Acked-by: Eric Wong <normalperson@yhbt.net>
-rw-r--r--t/lib-git-svn.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/t/lib-git-svn.sh b/t/lib-git-svn.sh
index fd8631f..0f7f35c 100644
--- a/t/lib-git-svn.sh
+++ b/t/lib-git-svn.sh
@@ -16,6 +16,7 @@ fi
GIT_DIR=$PWD/.git
GIT_SVN_DIR=$GIT_DIR/svn/refs/remotes/git-svn
SVN_TREE=$GIT_SVN_DIR/svn-tree
+PERL=${PERL:-perl}
svn >/dev/null 2>&1
if test $? -ne 1
@@ -29,7 +30,7 @@ export svnrepo
svnconf=$PWD/svnconf
export svnconf
-perl -w -e "
+$PERL -w -e "
use SVN::Core;
use SVN::Repos;
\$SVN::Core::VERSION gt '1.1.0' or exit(42);
@@ -130,7 +131,7 @@ stop_httpd () {
}
convert_to_rev_db () {
- perl -w -- - "$@" <<\EOF
+ $PERL -w -- - "$@" <<\EOF
use strict;
@ARGV == 2 or die "Usage: convert_to_rev_db <input> <output>";
open my $wr, '+>', $ARGV[1] or die "$!: couldn't open: $ARGV[1]";