diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-04-12 16:46:42 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-04-12 16:46:42 -0700 |
commit | 6f523f6d38e660edc67719fb0953d79cee3b4b1f (patch) | |
tree | 83076a723d21df25e335c917570fd617ca9dbd16 /t/lib-git-svn.sh | |
parent | c736becc94b1d3f026e1144731c17359a755d23f (diff) | |
parent | 1b19ccd236e3369ac77d74ded207406ffbf9feca (diff) | |
download | git-6f523f6d38e660edc67719fb0953d79cee3b4b1f.tar.gz |
Merge branch 'jk/no-perl'
* jk/no-perl:
tests: skip perl tests if NO_PERL is defined
Makefile: allow building without perl
Diffstat (limited to 't/lib-git-svn.sh')
-rw-r--r-- | t/lib-git-svn.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/t/lib-git-svn.sh b/t/lib-git-svn.sh index cdd7ccdd2a..773d47cf3c 100644 --- a/t/lib-git-svn.sh +++ b/t/lib-git-svn.sh @@ -8,6 +8,10 @@ then say 'skipping git svn tests, NO_SVN_TESTS defined' test_done fi +if ! test_have_prereq PERL; then + say 'skipping git svn tests, perl not available' + test_done +fi GIT_DIR=$PWD/.git GIT_SVN_DIR=$GIT_DIR/svn/git-svn |