perl: fix bash syntax
I thought I could make a small syntax change without trying, I was being foolish.
This commit is contained in:
parent
21cd5376b4
commit
5e202a2221
1 changed files with 3 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue