From c22033fc8c7b999aeed820144f4441743a7f1696 Mon Sep 17 00:00:00 2001 From: Ralf Wildenhues Date: Mon, 7 Jan 2008 22:58:27 +0100 Subject: [PATCH] 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. --- ChangeLog | 4 ++++ automake.in | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) 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) } -- 2.47.2