perl: re-enable the postPatch hook on Darwin
The problem was that sed(1) variants other than GNU sed require a backup suffix to the -i option.
This commit is contained in:
parent
604d201b7c
commit
1778200519
|
@ -77,12 +77,12 @@ stdenv.mkDerivation rec {
|
||||||
cpan/CPANPLUS/t/20_CPANPLUS-Dist-MM.t \
|
cpan/CPANPLUS/t/20_CPANPLUS-Dist-MM.t \
|
||||||
'' + " ";
|
'' + " ";
|
||||||
|
|
||||||
postPatch = optionalString (!stdenv.isDarwin) /* this failed on Darwin, no idea why */ ''
|
postPatch = ''
|
||||||
for test in ${testsToSkip}; do
|
for test in ${testsToSkip}; do
|
||||||
echo "Removing test" $test
|
echo "Removing test" $test
|
||||||
rm "$test"
|
rm "$test"
|
||||||
pat=`echo "$test" | sed 's,/,\\\\/,g'` # just escape slashes
|
pat=`echo "$test" | sed 's,/,\\\\/,g'` # just escape slashes
|
||||||
sed "/^$pat/d" -i MANIFEST
|
sed "/^$pat/d" -i.bak MANIFEST
|
||||||
done
|
done
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue