Avoid passing cygwin pathnames to Perl. Some Perls have problems using them Signed-off-by: Alex Riesen <raa.lkml@xxxxxxxxx> --- t/t4030-diff-textconv.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
From e8562487da0336f0f16832e72264f98879e0394b Mon Sep 17 00:00:00 2001 From: Alex Riesen <raa.lkml@xxxxxxxxx> Date: Tue, 18 Nov 2008 11:39:46 +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 <raa.lkml@xxxxxxxxx> --- t/t4030-diff-textconv.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/t/t4030-diff-textconv.sh b/t/t4030-diff-textconv.sh index 03ba26a..0b76e7c 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 -- 1.6.0.4.644.gb619a