smock: add --overwrite option
[fedora-mingw.git] / status.pl
index d249e1e..e68fb5e 100755 (executable)
--- a/status.pl
+++ b/status.pl
@@ -68,8 +68,12 @@ my %ignore_pending = ();
 open IGNORE, "IGNORE" or die "IGNORE: $!\n";
 while (<IGNORE>) {
     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,
 );