From: Richard W.M. Jones <"Richard W.M. Jones "> Date: Tue, 24 Feb 2009 09:26:18 +0000 (+0000) Subject: Ignore the cross-* experimental packages. X-Git-Url: http://git.annexia.org/?a=commitdiff_plain;h=8cc3f03804f548bb53a70dff5ebe4035be06bec9;p=fedora-mingw.git Ignore the cross-* experimental packages. --- 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;