summaryrefslogtreecommitdiff
path: root/build-aux/announce-gen
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2011-12-25 10:32:13 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2011-12-25 10:32:45 -0800
commit94850a57c63a3629a3f0d962c181f270215a30a4 (patch)
tree388380cfcd47ef354e0ea2e8e8b4746f1558d55b /build-aux/announce-gen
parent815dbef8515bd526934a0b47e4a255b2a816d350 (diff)
downloadgnulib-94850a57c63a3629a3f0d962c181f270215a30a4.tar.gz
announce-gen: fix `cmd' typo in diagnostic
* build-aux/announce-gen (print_changelog_deltas): Fix typo in diagnostic: a missing '$' meant that the command was not output.
Diffstat (limited to 'build-aux/announce-gen')
-rwxr-xr-xbuild-aux/announce-gen4
1 files changed, 2 insertions, 2 deletions
diff --git a/build-aux/announce-gen b/build-aux/announce-gen
index 38663818f9..5062bc005e 100755
--- a/build-aux/announce-gen
+++ b/build-aux/announce-gen
@@ -3,7 +3,7 @@ eval '(exit $?0)' && eval 'exec perl -wS "$0" ${1+"$@"}'
if 0;
# Generate a release announcement message.
-my $VERSION = '2011-11-09 21:30'; # UTC
+my $VERSION = '2011-12-25 18:26'; # UTC
# The definition above must lie within the first 8 lines in order
# for the Emacs time-stamp write hook (at end) to update it.
# If you change this file with Emacs, please let the write hook
@@ -310,7 +310,7 @@ sub print_changelog_deltas ($$)
# The exit code should be 1.
# Allow in case there are no modified ChangeLog entries.
$? == 256 || $? == 128
- or warn "$ME: warning: `cmd' had unexpected exit code or signal ($?)\n";
+ or warn "$ME: warning: `$cmd' had unexpected exit code or signal ($?)\n";
}
sub get_tool_versions ($$)