diff options
author | Ray Strode <rstrode@redhat.com> | 2009-07-21 10:07:49 -0400 |
---|---|---|
committer | Ray Strode <rstrode@redhat.com> | 2009-07-21 10:07:49 -0400 |
commit | bf40cd1b17e0bb55c606301f7d8ed65ae6791e54 (patch) | |
tree | 141cca1aa219c65d178b492c602a833e1a306077 | |
parent | 23ab6a2ef30fb6fb56f33ac44ecda5887d2b1f94 (diff) | |
download | ConsoleKit2-bf40cd1b17e0bb55c606301f7d8ed65ae6791e54.tar.gz |
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.am | 2 |
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; \ |