diff options
author | elliott_c <ocielliottc@users.noreply.github.com> | 2007-03-20 11:42:58 +0000 |
---|---|---|
committer | elliott_c <ocielliottc@users.noreply.github.com> | 2007-03-20 11:42:58 +0000 |
commit | efe429556b90d55386df891c4fea541dcf6b867f (patch) | |
tree | 7409a3c7eb679ea55c053bccd4dfe9ea90fc8e48 | |
parent | b18c932d9905885e177fdaeb79a09e9b4934012b (diff) | |
download | ATCD-efe429556b90d55386df891c4fea541dcf6b867f.tar.gz |
ChangeLogTag: Tue Mar 20 12:42:13 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r-- | ACE/ChangeLog | 7 | ||||
-rwxr-xr-x | ACE/bin/diff-builds.pl | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog index 441a14bc108..c5de2969262 100644 --- a/ACE/ChangeLog +++ b/ACE/ChangeLog @@ -1,3 +1,10 @@ +Tue Mar 20 12:42:13 UTC 2007 Chad Elliott <elliott_c@ociweb.com> + + * bin/diff-builds.pl: + + Sort the builds so that the output is in order and comparable + between multiple runs of the same date. + Mon Mar 19 19:16:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl> * bin/tao_other_tests.lst: diff --git a/ACE/bin/diff-builds.pl b/ACE/bin/diff-builds.pl index a2465fba94e..1add07303c0 100755 --- a/ACE/bin/diff-builds.pl +++ b/ACE/bin/diff-builds.pl @@ -261,7 +261,7 @@ if ($#builds == -1 && $#dates >= 0) $dates[1] = strftime ("%Y_%m_%d", gmtime); } - foreach $build (@builds) { + foreach $build (sort @builds) { $files[0] = $files[1] = $build; differentiate (\@files, \@dates); } |