Re: [PATCH] gitlog-to-changelog: fix git-log invocation

2011-11-01 Thread Dmitry V. Levin
On Tue, Nov 01, 2011 at 03:19:43PM +0100, Jim Meyering wrote: > Running it on coreutils, I got this, ad infinitum: > > Use of uninitialized value $line[0] in pattern match (m//) at > build-aux/gitlog-to-changelog line 163, line 34755. Ouch. > >From bc2f20935ff445f1e55b9c7f7e90cd77ef4eb007

Re: [PATCH] gitlog-to-changelog: fix git-log invocation

2011-11-01 Thread Jim Meyering
Dmitry V. Levin wrote: > On Mon, Oct 31, 2011 at 05:11:28PM +0100, Jim Meyering wrote: >> Dmitry V. Levin wrote: >> > git-log mishandles date strings before 1970-01-01 UTC, and there is >> > no use to specify --since=1970-01-01 by default anyway. >> > * build-aux/gitlog-to-changelog: By default, wh

Re: [PATCH] gitlog-to-changelog: fix git-log invocation

2011-10-31 Thread Dmitry V. Levin
On Mon, Oct 31, 2011 at 05:11:28PM +0100, Jim Meyering wrote: > Dmitry V. Levin wrote: > > git-log mishandles date strings before 1970-01-01 UTC, and there is > > no use to specify --since=1970-01-01 by default anyway. > > * build-aux/gitlog-to-changelog: By default, when no --since option > > was

Re: [PATCH] gitlog-to-changelog: fix git-log invocation

2011-10-31 Thread Jim Meyering
;%n%n'.$format_string, @ARGV); >open PIPE, '-|', @cmd > or die ("$ME: failed to run `". quoted_cmd (@cmd) ."': $!\n" Thanks. I've pushed this: >From 3aee0dcbd2f2ee665609b1d338940c021db7d484 Mon Sep 17 00:00:00 2001 From: "Dmitr

[PATCH] gitlog-to-changelog: fix git-log invocation

2011-10-31 Thread Dmitry V. Levin
git-log mishandles date strings before 1970-01-01 UTC, and there is no use to specify --since=1970-01-01 by default anyway. * build-aux/gitlog-to-changelog: By default, when no --since option was given, do not specify explicit --since option to git-log. --- ChangeLog |8 +++