X-Git-Url: http://git.annexia.org/?p=fedora-mingw.git;a=blobdiff_plain;f=status.pl;h=e68fb5e99cec27bec7790ae79935cfc730876c8a;hp=a8e58106417df62f3d8604979fd9b6470bb5144b;hb=e3e47afc4b3fd9505c83bff0710a5f907bfc0a3d;hpb=24da057cb7c171ea8eea498d04d3961472de0a33 diff --git a/status.pl b/status.pl index a8e5810..e68fb5e 100755 --- a/status.pl +++ b/status.pl @@ -68,8 +68,12 @@ my %ignore_pending = (); open IGNORE, "IGNORE" or die "IGNORE: $!\n"; while () { next if /^\#/ || /^$/; - m/(.*)/; # untaint - $ignore_pending{"mingw32-$1"} = 1; + if (/^cross-(.*)/) { + $ignore_pending{"mingw32-$1"} = 1; + } else { + m/(.*)/; # untaint + $ignore_pending{"mingw32-$1"} = 1; + } } close IGNORE;