From 8cc3f03804f548bb53a70dff5ebe4035be06bec9 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Thu, 1 Jan 1970 00:00:00 +0000 Subject: [PATCH] Ignore the cross-* experimental packages. --- status.pl | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/status.pl b/status.pl index a8e5810..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; -- 1.8.3.1