announce-gen: fix `cmd' typo in diagnostic
authorPaul Eggert <eggert@cs.ucla.edu>
Sun, 25 Dec 2011 18:32:13 +0000 (10:32 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 25 Dec 2011 18:32:45 +0000 (10:32 -0800)
* build-aux/announce-gen (print_changelog_deltas): Fix typo in
diagnostic: a missing '$' meant that the command was not output.

ChangeLog
build-aux/announce-gen

index 625efb3..7ce1968 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2011-12-25  Paul Eggert  <eggert@cs.ucla.edu>
+
+       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.
+
 2011-12-23  Jim Meyering  <meyering@redhat.com>
 
        test-framework-sh: distribute init.sh
index 3866381..5062bc0 100755 (executable)
@@ -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 ($$)