X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=build-aux%2Fgitlog-to-changelog;h=3efdb6ddbb0eccba4561b4c0f864ab754a9b4d36;hb=be933433b7ad24c4087c187b0107690d6da174ef;hp=1b7a659147884a124d455ffc6431171031bf9db9;hpb=dffe356e22c78fa96f14207e5ae7060bf3867f07;p=gnulib.git diff --git a/build-aux/gitlog-to-changelog b/build-aux/gitlog-to-changelog index 1b7a65914..3efdb6ddb 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";