summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2019-08-25 02:53:02 +0200
committerBruno Haible <bruno@clisp.org>2019-08-28 01:14:51 +0200
commit0c5031bcc46774b5f54253a71ce8f4ab31c18295 (patch)
treef60af4d17066a42d4b420cbcaafa912fac0659e9
parentd77a23b15925e5554325ea3553c940133734eee3 (diff)
downloadgnulib-0c5031bcc46774b5f54253a71ce8f4ab31c18295.tar.gz
libtool-next-version: Fix error output.
* build-aux/libtool-next-version (func_fatal_error): Fix the program name.
-rw-r--r--ChangeLog6
-rwxr-xr-xbuild-aux/libtool-next-version4
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 9976e1833b..49a0ea4f1c 100644
--- 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
diff --git a/build-aux/libtool-next-version b/build-aux/libtool-next-version
index db441f7f17..a55e045cdf 100755
--- a/build-aux/libtool-next-version
+++ b/build-aux/libtool-next-version
@@ -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
}