lol

perl: revert "re-enable the postPatch hook on Darwin"

This reverts commit 1778200519a18ae00751ab3015d0e665373c32f6.
Apparently, the sed -i syntax is different from what I thought, because
now the build fails on Darwin, saying:

sed: -i.bak: No such file or directory

See http://hydra.nixos.org/build/5829944/nixlog/1/raw for more details.

+2 -2
+2 -2
pkgs/development/interpreters/perl/5.16/default.nix
··· 77 77 cpan/CPANPLUS/t/20_CPANPLUS-Dist-MM.t \ 78 78 '' + " "; 79 79 80 - postPatch = '' 80 + postPatch = optionalString (!stdenv.isDarwin) /* this failed on Darwin, no idea why */ '' 81 81 for test in ${testsToSkip}; do 82 82 echo "Removing test" $test 83 83 rm "$test" 84 84 pat=`echo "$test" | sed 's,/,\\\\/,g'` # just escape slashes 85 - sed "/^$pat/d" -i.bak MANIFEST 85 + sed "/^$pat/d" -i MANIFEST 86 86 done 87 87 ''; 88 88