git.annexia.org
/
fedora-mingw.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
c10803d
)
Ignore the cross-* experimental packages.
author
Richard W.M. Jones
<rjones@redhat.com>
Tue, 24 Feb 2009 09:26:18 +0000
(09:26 +0000)
committer
Richard W.M. Jones
<rjones@redhat.com>
Tue, 24 Feb 2009 09:26:18 +0000
(09:26 +0000)
status.pl
patch
|
blob
|
history
diff --git
a/status.pl
b/status.pl
index
a8e5810
..
e68fb5e
100755
(executable)
--- a/
status.pl
+++ b/
status.pl
@@
-68,8
+68,12
@@
my %ignore_pending = ();
open IGNORE, "IGNORE" or die "IGNORE: $!\n";
while (<IGNORE>) {
next if /^\#/ || /^$/;
open IGNORE, "IGNORE" or die "IGNORE: $!\n";
while (<IGNORE>) {
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;
}
close IGNORE;