X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=show-build-order.pl;h=06aff295febe492ab1558f28dff0139856c9200b;hb=a19620c1d1099884f507bc046901b95c92fe50f6;hp=323523528931f6ed6fd97fd0830655c69425d279;hpb=125651316893857f6039271122b9eaa841c9b25d;p=fedora-mingw.git diff --git a/show-build-order.pl b/show-build-order.pl index 3235235..06aff29 100755 --- a/show-build-order.pl +++ b/show-build-order.pl @@ -55,10 +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-python"}; + delete $br{"mingw32-ocaml"}; + delete $br{"mingw32-curl"}; + delete $br{"mingw32-pidgin"}; # There is a dependency loop (gcc -> runtime/w32api -> gcc) # which has to be manually resolved below. Break that loop. @@ -91,7 +94,7 @@ sub main { while () { chomp; - if (/^mingw32-(.*)/) { + if (/^mingw32-(.*)/ && exists $br{$_}) { $packagename = $_; my $dirname = $1;