Ignore packages correctly.
authorRichard W.M. Jones <rjones@redhat.com>
Mon, 19 Jan 2009 14:54:16 +0000 (14:54 +0000)
committerRichard W.M. Jones <rjones@redhat.com>
Mon, 19 Jan 2009 14:54:16 +0000 (14:54 +0000)
status.pl

index d249e1e..c9d6d7b 100755 (executable)
--- a/status.pl
+++ b/status.pl
@@ -69,7 +69,7 @@ open IGNORE, "IGNORE" or die "IGNORE: $!\n";
 while (<IGNORE>) {
     next if /^\#/ || /^$/;
     m/(.*)/; # untaint
-    $ignore_pending{$1} = 1;
+    $ignore_pending{"mingw32-$1"} = 1;
 }
 close IGNORE;