]> git.saurik.com Git - apple/libc.git/blobdiff - makeCombos
Libc-498.tar.gz
[apple/libc.git] / makeCombos
index a9957fecca6fc7946be7e6c37276fc87946cde4d..70570d2394aad12368933bc14b0c76595d0727e3 100755 (executable)
@@ -39,10 +39,10 @@ push(@args, $prev) if $prev;
 
 # now make all unique combinations
 my %combos;
-foreach my $variant (@args) {
+foreach my $variant (sort(@args)) {
     my($v, $defines) = split('/', $variant, 2);
     my %new;
-    @new{$v, map("$_-$v", keys %combos)} = ($defines, map("$_\@$defines", values %combos));
+    @new{$v, map("$_-$v", sort(keys %combos))} = ($defines, map("$_\@$defines", sort(values %combos)));
     %combos = (%combos, %new);
 }
 for(sort keys(%combos)) {