]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
automake: add missing AC_MSG_RESULT calls to AM_SANITY_CHECK.
authorRichard Hansen <rhansen@rhansen.org>
Thu, 20 Feb 2025 23:43:49 +0000 (15:43 -0800)
committerKarl Berry <karl@freefriends.org>
Thu, 20 Feb 2025 23:43:49 +0000 (15:43 -0800)
From https://bugs.gnu.org/76448 (automake-patches).

* m4/sanity.m4 (AM_SANITY_CHECK): Call AC_MSG_RESULT before erroring
out so that a complete line is printed to stdout before the error
message is written to stderr.
* NEWS: mention this.
* THANKS: add Richard.

NEWS
THANKS
m4/sanity.m4

diff --git a/NEWS b/NEWS
index 22bd6a5853ae0c576b14853e6d1c9c488eb98585..7856d31a38ec827319c472ccfc3c8257018ace05 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -16,8 +16,10 @@ New in 1.x:
 * Bugs fixed
 
   - Do not make Perl warnings fatal, per Perl's recommendation.
+    (https://lists.gnu.org/archive/html/automake/2025-01/msg00003.html)
 
   - Avoid Perl 5.41.8+ precedence warning for use of !!.
+    (https://lists.gnu.org/archive/html/automake/2025-01/msg00000.html)
 
   - The py-compile script once again does nothing (successfully) if the
     PYTHON environment variable is set to ":", or anything that isn't a
@@ -28,6 +30,9 @@ New in 1.x:
   - The compile script is more robust to Windows configurations;
     specifically, avoiding double-path translation on MSYS. (bug#75939)
 
+  - AM_SANITY_CHECK outputs a "no" for failure before fatal errors.
+    (bug#76448)
+
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 New in 1.17:
diff --git a/THANKS b/THANKS
index 7f3bdd47068866584635e6c2a2710beed4283dd7..50fbc18d5aa98538e0a45a8f4be9d76f504b38c0 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -442,6 +442,7 @@ Tim Mooney                      mooney@dogbert.cc.ndsu.NoDak.edu
 Tim Retout                      diocles@debian.org
 Tim Rice                        tim@multitalents.net
 Tim Van Holder                  tim.van.holder@pandora.be
+Richard Hansen                  rhansen@rhansen.org
 Tobias Hansen                   thansen@debian.org
 Tom Epperly                     tepperly@llnl.gov
 Tom Rini                        tom_rini@mentor.com
index 53538a8732f9b339e3a7c96913a9dbdc492a0c69..be4b16113143135ce3b3b44f7f4dfd4bd06a6df2 100644 (file)
@@ -169,10 +169,12 @@ am_lf='
 '
 case `pwd` in
   *[[\\\"\#\$\&\'\`$am_lf]]*)
+    AC_MSG_RESULT([no])
     AC_MSG_ERROR([unsafe absolute working directory name]);;
 esac
 case $srcdir in
   *[[\\\"\#\$\&\'\`$am_lf\ \   ]]*)
+    AC_MSG_RESULT([no])
     AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);;
 esac