From 80754042c691182bba4f55ca28b915f44edcc7bc Mon Sep 17 00:00:00 2001 From: Jamey Sharp Date: Mon, 5 Nov 2007 09:32:44 -0800 Subject: [PATCH 1/1] Bug #13073: Fix broken word-wrapping in ChangeLog generation. Thanks to Peter Dyballa for pointing out the bug. --- Makefile.am | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index e5377f8..4bc0ba3 100644 --- a/Makefile.am +++ b/Makefile.am @@ -15,8 +15,7 @@ MAINTAINERCLEANFILES=ChangeLog .PHONY: ChangeLog ChangeLog: - (GIT_DIR=$(top_srcdir)/.git git-log > .changelog.tmp && mv .changelog.tmp ChangeLog; rm -f .changelog.tmp) || (touch ChangeLog; echo 'git directory not -found: installing possibly empty changelog.' >&2) + (GIT_DIR=$(top_srcdir)/.git git-log > .changelog.tmp && mv .changelog.tmp ChangeLog; rm -f .changelog.tmp) || (touch ChangeLog; echo 'git directory not found: installing possibly empty changelog.' >&2) dist-hook: ChangeLog -- 1.9.1