summaryrefslogtreecommitdiff
path: root/lib/gitlog-to-changelog
diff options
context:
space:
mode:
authorStefano Lattarini <stefano.lattarini@gmail.com>2012-01-15 17:10:21 +0100
committerStefano Lattarini <stefano.lattarini@gmail.com>2012-01-15 17:10:21 +0100
commitdef0340b7e8ae999eafe4466fc934e7694fe372d (patch)
tree325ff359d7719a07a1cf1e6e0dc2cc27620d0e3f /lib/gitlog-to-changelog
parent59367c05bbfd19062c6754f088d16bec33f39b54 (diff)
downloadautomake-def0340b7e8ae999eafe4466fc934e7694fe372d.tar.gz
sync: gitlog-to-changelog from gnulib upstream
* lib/gitlog-to-changelog: Synced from upstream, by "make fetch".
Diffstat (limited to 'lib/gitlog-to-changelog')
-rwxr-xr-xlib/gitlog-to-changelog6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/gitlog-to-changelog b/lib/gitlog-to-changelog
index 9d5327a42..0efedb046 100755
--- a/lib/gitlog-to-changelog
+++ b/lib/gitlog-to-changelog
@@ -3,7 +3,7 @@ eval '(exit $?0)' && eval 'exec perl -wS "$0" ${1+"$@"}'
if 0;
# Convert git log output to ChangeLog format.
-my $VERSION = '2012-01-02 14:48'; # UTC
+my $VERSION = '2012-01-06 07:14'; # 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
@@ -47,7 +47,7 @@ sub usage ($)
my $STREAM = ($exit_code == 0 ? *STDOUT : *STDERR);
if ($exit_code != 0)
{
- print $STREAM "Try `$ME --help' for more information.\n";
+ print $STREAM "Try '$ME --help' for more information.\n";
}
else
{
@@ -211,7 +211,7 @@ sub parse_amend_file($)
my @cmd = (qw (git log --log-size),
'--pretty=format:%H:%ct %an <%ae>%n%n'.$format_string, @ARGV);
open PIPE, '-|', @cmd
- or die ("$ME: failed to run `". quoted_cmd (@cmd) ."': $!\n"
+ or die ("$ME: failed to run '". quoted_cmd (@cmd) ."': $!\n"
. "(Is your Git too old? Version 1.5.1 or later is required.)\n");
my $prev_multi_paragraph;