X-Git-Url: http://git.annexia.org/?p=fedora-mingw.git;a=blobdiff_plain;f=status.pl;h=e68fb5e99cec27bec7790ae79935cfc730876c8a;hp=d249e1e93fb7df64dec94ce7a31fdf0d9ca09fa0;hb=477530a53fa6b014c0fd24db0416da2b96cf8510;hpb=df247d7a482037c758a5b7295bddb249424068ad 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, );