diff options
author | David Tardon <dtardon@redhat.com> | 2012-05-09 11:08:06 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2012-05-29 07:34:14 +0200 |
commit | 8f102d9d7040398e8f7a9a029fb8e05bbf0757d4 (patch) | |
tree | 84e249e242578ea665e9c0a286183fbaf5dea1be /solenv | |
parent | 8931463a0c2e9aae2d6d4ee4194659512b3750ca (diff) |
make the output more predictable
So it is easier to check differences between install scripts generated
by dmake and gbuild.
Change-Id: I12bbdf481c84c896b67a94eaca6460ffb52d96ec
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/bin/modules/par2script/work.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/bin/modules/par2script/work.pm b/solenv/bin/modules/par2script/work.pm index 2542b9ed5dcf..e9320bdb9d15 100644 --- a/solenv/bin/modules/par2script/work.pm +++ b/solenv/bin/modules/par2script/work.pm @@ -314,7 +314,7 @@ sub collect_children my ( $itemhash, $parent, $order ) = @_; my $item; - foreach $item ( keys %{$itemhash} ) + foreach $item ( sort keys %{$itemhash} ) { if ( $itemhash->{$item}->{'ParentID'} eq $parent ) { |