]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
maint: secondary updates from make fetch.
authorKarl Berry <karl@freefriends.org>
Wed, 19 Jun 2024 16:43:18 +0000 (09:43 -0700)
committerKarl Berry <karl@freefriends.org>
Wed, 19 Jun 2024 16:43:18 +0000 (09:43 -0700)
* lib/gendocs.sh: update with make fetch.
* lib/gitlog-to-changelog: likewise.

lib/gendocs.sh
lib/gitlog-to-changelog

index b888de4f8ca3ea51e9c68470c580eb27f68d000d..036302b7fa353ceb61910e581515ba317a635508 100755 (executable)
@@ -256,8 +256,8 @@ BEGIN {
 /<img src="(.*?)"/g && ++$need{$1};
 
 END {
-  #print "$me: @{[keys %need]}\n";  # for debugging, show images found.
-  FILE: for my $f (keys %need) {
+  #print "$me: @{[sort keys %need]}\n";  # for debugging, show images found.
+  FILE: for my $f (sort keys %need) {
     for my $d (@dirs) {
       if (-f "$d/$f") {
         use File::Basename;
index 16a9405a7cb50200ef5f830dbd61bf29d46178e5..49e7ef95cef4155fddae2c2847790ed5031c8c17 100755 (executable)
@@ -495,7 +495,7 @@ sub git_dir_option($)
 
   # Complain about any unused entry in the --amend=F specified file.
   my $fail = 0;
-  foreach my $sha (keys %$amend_code)
+  foreach my $sha (sort keys %$amend_code)
     {
       warn "$ME:$amend_file: unused entry: $sha\n";
       $fail = 1;