]> Savannah Git Hosting - gnulib.git/commitdiff
libtool-next-version: Fix error output.
authorBruno Haible <bruno@clisp.org>
Sun, 25 Aug 2019 00:53:02 +0000 (02:53 +0200)
committerBruno Haible <bruno@clisp.org>
Tue, 27 Aug 2019 23:14:51 +0000 (01:14 +0200)
* build-aux/libtool-next-version (func_fatal_error): Fix the program
name.

ChangeLog
build-aux/libtool-next-version

index 9976e1833b0f136514f0cc39aaadea9a6520eaeb..49a0ea4f1c5f5eeaf03da46b4b5988b33fe7dbd7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2019-08-27  Bruno Haible  <bruno@clisp.org>
+
+       libtool-next-version: Fix error output.
+       * build-aux/libtool-next-version (func_fatal_error): Fix the program
+       name.
+
 2019-08-27  Paul Eggert  <eggert@cs.ucla.edu>
 
        Speed up INT_MULTIPLY_WRAPV on macOS
index db441f7f171b5f729ff559581a877dd120376fcd..a55e045cdfc2b27e63be92ed56e59708ed82df11 100755 (executable)
@@ -80,8 +80,8 @@ There is NO WARRANTY, to the extent permitted by law."
 # outputs to stderr a fatal error message, and terminates the program.
 func_fatal_error ()
 {
-  echo "declared.sh: *** $1" 1>&2
-  echo "declared.sh: *** Stop." 1>&2
+  echo "libtool-next-version: *** $1" 1>&2
+  echo "libtool-next-version: *** Stop." 1>&2
   exit 1
 }