From 42f38edb92549784f9c334c58efe37e87a4f5219 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Thu, 1 Jan 1970 00:00:00 +0000 Subject: [PATCH] Ignore packages correctly. --- status.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 1.8.3.1