This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "GNU Automake".
http://git.sv.gnu.org/gitweb/?p=automake.git;a=commitdiff;h=c22033fc8c7b999aeed820144f4441743a7f1696 The branch, master has been updated via c22033fc8c7b999aeed820144f4441743a7f1696 (commit) from 92c92529be6fb950698a2a3e265edf2bda772c47 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit c22033fc8c7b999aeed820144f4441743a7f1696 Author: Ralf Wildenhues <[EMAIL PROTECTED]> Date: Mon Jan 7 22:58:27 2008 +0100 Stable `automake --add-missing --verbose' output. * automake.in (scan_autoconf_files): Sort loop over %required_aux_file, for stable verbose output. Report by Bruno Haible. ----------------------------------------------------------------------- Summary of changes: ChangeLog | 4 ++++ automake.in | 3 ++- 2 files changed, 6 insertions(+), 1 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1a90ced..768c418 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2008-01-07 Ralf Wildenhues <[EMAIL PROTECTED]> + * automake.in (scan_autoconf_files): Sort loop over + %required_aux_file, for stable verbose output. + Report by Bruno Haible. + * lib/config.guess, lib/config.sub, lib/texinfo.tex: Sync from upstream. diff --git a/automake.in b/automake.in index 15b4b77..242abce 100755 --- a/automake.in +++ b/automake.in @@ -5146,8 +5146,9 @@ sub scan_autoconf_files () # check must be done for every run, even those where we are only # looking at a subdir Makefile. We must set relative_dir for # maybe_push_required_file to work. + # Sort the files for stable verbose output. $relative_dir = '.'; - foreach my $file (keys %required_aux_file) + foreach my $file (sort keys %required_aux_file) { require_conf_file ($required_aux_file{$file}->get, FOREIGN, $file) } hooks/post-receive -- GNU Automake