From acdd5946e05fd351eca750cc7a1ef4fd5a158f72 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 10 Feb 2008 11:05:12 +0100 Subject: [PATCH] * build-aux/gitlog-to-changelog: Use committer date, not author date. --- ChangeLog | 2 ++ build-aux/gitlog-to-changelog | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index c53a8a2d58..911eaaacf5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2008-02-10 Jim Meyering + * build-aux/gitlog-to-changelog: Use committer date, not author date. + xstrtol_error: Fix typo. * lib/xstrtol-error.c (xstrtol_error): The parameter was unused: s/exit_failure/exit_status/. diff --git a/build-aux/gitlog-to-changelog b/build-aux/gitlog-to-changelog index 1b7a659147..3efdb6ddbb 100755 --- a/build-aux/gitlog-to-changelog +++ b/build-aux/gitlog-to-changelog @@ -1,7 +1,7 @@ #!/usr/bin/perl # Convert git log output to ChangeLog format. -my $VERSION = '2008-02-09 13:52'; # UTC +my $VERSION = '2008-02-10 10:03'; # 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 @@ -104,7 +104,7 @@ sub quoted_cmd(@) and (warn "$ME: too many arguments\n"), usage 1; my @cmd = (qw (git log --log-size), "--since=$since_date", - '--pretty=format:%at %an <%ae>%n%n%s%n%b%n'); + '--pretty=format:%ct %an <%ae>%n%n%s%n%b%n'); open PIPE, '-|', @cmd or die "$ME: failed to run `". quoted_cmd (@cmd) ."': $!\n"; -- 2.30.2