X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=show-build-order.pl;h=b55e10abe2ca746f1f541864707c8c5d0e115694;hb=022c5a8fbb914166fcaeeb775f73cfa504a57e88;hp=53353ce7a61f7cd10af7f22fde96c0cbea168264;hpb=ba30732061e9f16ae7dcb7fb1c7b479f47ff72d4;p=fedora-mingw.git diff --git a/show-build-order.pl b/show-build-order.pl index 53353ce..b55e10a 100755 --- a/show-build-order.pl +++ b/show-build-order.pl @@ -55,11 +55,13 @@ sub main { # Some packages we want to ignore for now. delete $br{"mingw32-cyrus-sasl"}; - delete $br{"mingw32-nsis"}; delete $br{"mingw32-wix"}; delete $br{"mingw32-example"}; delete $br{"mingw32-gdb"}; - delete $br{"mingw32-sqlite"}; + delete $br{"mingw32-python"}; + delete $br{"mingw32-pidgin"}; + delete $br{"mingw32-nspr"}; + delete $br{"mingw32-nss"}; # There is a dependency loop (gcc -> runtime/w32api -> gcc) # which has to be manually resolved below. Break that loop. @@ -92,7 +94,7 @@ sub main { while () { chomp; - if (/^mingw32-(.*)/) { + if (/^mingw32-(.*)/ && exists $br{$_}) { $packagename = $_; my $dirname = $1;