From: Ralf Wildenhues Date: Mon, 7 Jan 2008 21:58:27 +0000 (+0100) Subject: Stable `automake --add-missing --verbose' output. X-Git-Tag: v1.10b~187 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c22033fc8c7b999aeed820144f4441743a7f1696;p=thirdparty%2Fautomake.git 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. --- diff --git a/ChangeLog b/ChangeLog index 1a90cedff..768c418b7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2008-01-07 Ralf Wildenhues + * 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 15b4b7754..242abce5d 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) }