Re: [PATCH] t: Replace 'perl' by $PERL_PATH
From: Junio C Hamano <hidden>
Date: 2016-06-15 22:54:07
Torsten Bögershausen [off-list ref] writes:
When I try to debug it, the $PERL_PATH seems to be empty:
Ahh, given that it does this:
cat >hexdump <<'EOF'
#!/bin/sh
perl -e '$/ = undef; $_ = <>; s/./ord($&)/ge; print $_' < "$1"
EOF
chmod +x hexdump
PERL_PATH should be exported from test-lib.sh; we dot-source
GIT-BUILD-OPTIONS to get its value, but it is not propagated to the
subprocess like this hexdump script.