Philippe Bruhat (BooK) schrieb: > diff --git a/t/t9400-git-cvsserver-server.sh b/t/t9400-git-cvsserver-server.sh > index 64f947d..dc710f8 100755 > --- a/t/t9400-git-cvsserver-server.sh > +++ b/t/t9400-git-cvsserver-server.sh > @@ -20,7 +20,7 @@ then > say 'skipping git-cvsserver tests, cvs not found' > test_done > fi > -perl -e 'use DBI; use DBD::SQLite' >/dev/null 2>&1 || { > +$PERL_PATH -e 'use DBI; use DBD::SQLite' >/dev/null 2>&1 || { Shouldn't this be "$PERL_PATH", i.e., double-quoted? (Ditto in the other cases that you replaced.) > diff --git a/t/test-lib.sh b/t/test-lib.sh > index f2ca536..54dd4d5 100644 > --- a/t/test-lib.sh > +++ b/t/test-lib.sh > @@ -730,6 +730,8 @@ esac > > test -z "$NO_PERL" && test_set_prereq PERL > > +test -z "$NO_PERL" && test -z "$PERL_PATH" && export PERL_PATH=/usr/bin/perl Wouldn't ... && export PERL_PATH=perl be a safer fall-back? -- Hannes -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html