From: Richard W.M. Jones <"Richard W.M. Jones "> Date: Mon, 19 Jan 2009 14:54:16 +0000 (+0000) Subject: Ignore packages correctly. X-Git-Url: http://git.annexia.org/?a=commitdiff_plain;h=42f38edb92549784f9c334c58efe37e87a4f5219;hp=df247d7a482037c758a5b7295bddb249424068ad;p=fedora-mingw.git Ignore packages correctly. --- diff --git a/status.pl b/status.pl index d249e1e..c9d6d7b 100755 --- a/status.pl +++ b/status.pl @@ -69,7 +69,7 @@ open IGNORE, "IGNORE" or die "IGNORE: $!\n"; while () { next if /^\#/ || /^$/; m/(.*)/; # untaint - $ignore_pending{$1} = 1; + $ignore_pending{"mingw32-$1"} = 1; } close IGNORE;