From: Jamey Sharp Date: Mon, 5 Nov 2007 17:32:44 +0000 (-0800) Subject: Bug #13073: Fix broken word-wrapping in ChangeLog generation. X-Git-Url: http://git.openbox.org/?p=dana%2Fxcompmgr.git;a=commitdiff_plain;h=80754042c691182bba4f55ca28b915f44edcc7bc;hp=733e29ba0e4c05cbb35fefc5d66566907428713d;ds=sidebyside Bug #13073: Fix broken word-wrapping in ChangeLog generation. Thanks to Peter Dyballa for pointing out the bug. --- 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