X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=show-build-order.pl;h=2973fc0f908001cb541cf3862da38acd5dae4363;hb=bf794f82b1b2abc445de257abd62da5c252e12ba;hp=d89e245306475b3edd9e32264ed448c3125407e7;hpb=05c674c80ad9a2aa47972f9ac7915ca409abea12;p=fedora-mingw.git diff --git a/show-build-order.pl b/show-build-order.pl index d89e245..2973fc0 100755 --- a/show-build-order.pl +++ b/show-build-order.pl @@ -58,6 +58,11 @@ sub main { delete $br{"mingw32-wix"}; delete $br{"mingw32-example"}; delete $br{"mingw32-gdb"}; + delete $br{"mingw32-python"}; + delete $br{"mingw32-pidgin"}; + delete $br{"mingw32-nspr"}; + delete $br{"mingw32-nss"}; + delete $br{"mingw32-ocaml-lablgl"}; # There is a dependency loop (gcc -> runtime/w32api -> gcc) # which has to be manually resolved below. Break that loop. @@ -90,7 +95,7 @@ sub main { while () { chomp; - if (/^mingw32-(.*)/) { + if (/^mingw32-(.*)/ && exists $br{$_}) { $packagename = $_; my $dirname = $1;