X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=status.pl;h=e68fb5e99cec27bec7790ae79935cfc730876c8a;hb=HEAD;hp=c9d6d7b64d64824901ab7e1029f4ea950092f59b;hpb=42f38edb92549784f9c334c58efe37e87a4f5219;p=fedora-mingw.git diff --git a/status.pl b/status.pl index c9d6d7b..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; @@ -82,6 +86,7 @@ my %ignore_fedora = ( "openldap" => 1, "pixman" => 1, "python" => 1, + "qt" => 1, "xenwatch" => 1, );