perl: fix bash syntax

I thought I could make a small syntax change without trying, I was being
foolish.
This commit is contained in:
Vladimír Čunát 2013-04-02 09:20:58 +02:00
parent 21cd5376b4
commit 5e202a2221

View file

@ -66,10 +66,11 @@ stdenv.mkDerivation rec {
lib/Net/hostent.t \
dist/IO/t/{io_multihomed.t,io_sock.t} \
t/porting/{maintainers.t,regen.t} \
cpan/Socket/t/getnameinfo.t
'';
cpan/Socket/t/getnameinfo.t \
'' + " ";
postPatch = ''
for test in ${testsToSkip}; do
echo "Removing test" $test
rm "$test"
pat=`echo "$test" | sed 's,/,\\\\/,g'` # just escape slashes
sed "/^$pat/d" -i MANIFEST