summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRay Strode <rstrode@redhat.com>2009-07-21 10:07:49 -0400
committerRay Strode <rstrode@redhat.com>2009-07-21 10:07:49 -0400
commitbf40cd1b17e0bb55c606301f7d8ed65ae6791e54 (patch)
tree141cca1aa219c65d178b492c602a833e1a306077
parent23ab6a2ef30fb6fb56f33ac44ecda5887d2b1f94 (diff)
Call "git log" instead of "git-log" in Makefile
git-log (with a hyphen) is an obsolete way to call git log.
-rw-r--r--Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 811a696..be2efff 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -51,7 +51,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 --stat) | fmt --split-only > $@.tmp \
&& mv -f $@.tmp $@ \
|| ($(RM) $@.tmp; \
echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \