diff options
author | Vincent van Ravesteijn <vfr@lyx.org> | 2012-06-11 19:01:53 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-06-12 09:30:41 -0700 |
commit | a3428205e6d74542d6441baaa29d1cb1d1064d95 (patch) | |
tree | 0ee104bbd1c619f46234d342fb6774f44b2f26c8 /t/t4014-format-patch.sh | |
parent | Git 1.7.11-rc3 (diff) | |
download | tgif-a3428205e6d74542d6441baaa29d1cb1d1064d95.tar.xz |
t: Replace 'perl' by $PERL_PATH
GIT-BUILD-OPTIONS defines PERL_PATH to be used in the test suite. Only a
few tests already actually use this variable when perl is needed. The
other test just call 'perl' and it might happen that the wrong perl
interpreter is used.
This becomes problematic on Windows, when the perl interpreter that is
compiled and installed on the Windows system is used, because this perl
interpreter might introduce some unexpected LF->CRLF conversions.
This patch makes sure that $PERL_PATH is used everywhere in the test suite
and that the correct perl interpreter is used.
Signed-off-by: Vincent van Ravesteijn <vfr@lyx.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t4014-format-patch.sh')
-rwxr-xr-x | t/t4014-format-patch.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t4014-format-patch.sh b/t/t4014-format-patch.sh index b473b6d6eb..4c22c17a33 100755 --- a/t/t4014-format-patch.sh +++ b/t/t4014-format-patch.sh @@ -243,7 +243,7 @@ check_threading () { (git format-patch --stdout "$@"; echo $? > status.out) | # Prints everything between the Message-ID and In-Reply-To, # and replaces all Message-ID-lookalikes by a sequence number - perl -ne ' + $PERL_PATH -ne ' if (/^(message-id|references|in-reply-to)/i) { $printing = 1; } elsif (/^\S/) { |