X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=status.pl;h=e68fb5e99cec27bec7790ae79935cfc730876c8a;hb=fc5bb9a6cab294a583e3b0fd5502bbcae46c748f;hp=d249e1e93fb7df64dec94ce7a31fdf0d9ca09fa0;hpb=df247d7a482037c758a5b7295bddb249424068ad;p=fedora-mingw.git diff --git a/status.pl b/status.pl index d249e1e..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{$1} = 1; + if (/^cross-(.*)/) { + $ignore_pending{"mingw32-$1"} = 1; + } else { + m/(.*)/; # untaint + $ignore_pending{"mingw32-$1"} = 1; + } } close IGNORE; @@ -82,6 +86,7 @@ my %ignore_fedora = ( "openldap" => 1, "pixman" => 1, "python" => 1, + "qt" => 1, "xenwatch" => 1, );