Merge #261462: indent: skip tests that can fail

...into staging-next
This commit is contained in:
Vladimír Čunát 2023-10-16 21:56:24 +02:00
commit a53f752568
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA

View File

@ -30,6 +30,12 @@ stdenv.mkDerivation rec {
})
];
# avoid https://savannah.gnu.org/bugs/?64751
postPatch = ''
sed -E -i '/output\/else-comment-2-br(-ce)?.c/d' regression/TEST
sed -E -i 's/else-comment-2-br(-ce)?.c//g' regression/TEST
'';
makeFlags = [ "AR=${stdenv.cc.targetPrefix}ar" ];
strictDeps = true;