From 3b91c30b763d972c5e133507ccc4b749dc2c6df5 Mon Sep 17 00:00:00 2001 From: Alex Riesen Date: Wed, 19 Nov 2008 12:14:50 +0100 Subject: [PATCH] Fix t4030-diff-textconv.sh Avoid passing cygwin pathnames to Perl. Some Perls have problems using them Signed-off-by: Alex Riesen Signed-off-by: Junio C Hamano --- t/t4030-diff-textconv.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/t4030-diff-textconv.sh b/t/t4030-diff-textconv.sh index 03ba26a0de..0b76e7c97a 100755 --- a/t/t4030-diff-textconv.sh +++ b/t/t4030-diff-textconv.sh @@ -21,7 +21,7 @@ EOF cat >hexdump <<'EOF' #!/bin/sh -perl -e '$/ = undef; $_ = <>; s/./ord($&)/ge; print $_' "$1" +perl -e '$/ = undef; $_ = <>; s/./ord($&)/ge; print $_' < "$1" EOF chmod +x hexdump -- 2.11.4.GIT