summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanny Kukawka <danny.kukawka@web.de>2010-08-23 17:06:05 +0200
committerDanny Kukawka <danny.kukawka@web.de>2010-08-23 17:07:26 +0200
commit0763f4900a32ac01d4b259fe010ab8ebfc83ad0f (patch)
tree5ceaef4289b54157482b29f730da6784728319d4
parentfc9571c07a81aba8a8fdaa8014d4034b6456d203 (diff)
fix generation of Changelog
Fixed generation of Changelog from git: replaced git-log with correct commando 'git log'.
-rw-r--r--Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 9dd69ec3..748c55f5 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -15,7 +15,7 @@ ChangeLog: $(srcdir)/ChangeLog
$(srcdir)/ChangeLog:
@if test -d "$(srcdir)/.git"; then \
(cd "$(srcdir)" && \
- ./missing --run git-log --stat) | fmt --split-only > $@.tmp \
+ ./missing --run git log) | fmt --split-only > $@.tmp \
&& mv -f $@.tmp $@ \
|| ($(RM) $@.tmp; \
echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \