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