diff --git a/pkgs/coreutils-advcpmv.nix b/pkgs/coreutils-advcpmv.nix index 4816e3d..6926510 100644 --- a/pkgs/coreutils-advcpmv.nix +++ b/pkgs/coreutils-advcpmv.nix @@ -23,8 +23,10 @@ coreutils.overrideAttrs (old: { ) ]; - # With the patch above, the test tests/misc/usage_vs_getopt.sh does not work anymore. + # With the patch above, these tests don't work anymore. postPatch = old.postPatch + '' sed '2i echo Skipping usage vs getopts test && exit 77' -i ./tests/misc/usage_vs_getopt.sh + sed '2i print "Skipping\n"; exit 77;' -i ./tests/mv/i-1.pl + sed '2i echo Skipping && exit 77' -i ./tests/mv/i-2.sh ''; })