aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJamey Sharp <jamey@minilop.net>2007-11-05 09:32:44 -0800
committerJamey Sharp <jamey@minilop.net>2007-11-05 09:32:44 -0800
commit80754042c691182bba4f55ca28b915f44edcc7bc (patch)
tree91c7f6e177775ca456f8855cf2b6f52096c38d95
parentAdd *~ to .gitignore to skip patch/emacs droppings (diff)
downloadxcman-80754042c691182bba4f55ca28b915f44edcc7bc.tar.gz
xcman-80754042c691182bba4f55ca28b915f44edcc7bc.tar.bz2
xcman-80754042c691182bba4f55ca28b915f44edcc7bc.tar.xz
Bug #13073: Fix broken word-wrapping in ChangeLog generation.
Thanks to Peter Dyballa <Peter_Dyballa@Freenet.DE> for pointing out the bug.
-rw-r--r--Makefile.am3
1 files changed, 1 insertions, 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