diff options
author | Dave Airlie <airlied@redhat.com> | 2009-07-06 18:32:32 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2009-07-06 18:43:33 +1000 |
commit | e68fbf743ec88e0fa3a9f1ffe83daf251e250b21 (patch) | |
tree | 2373eb769c85b37adaac31346a840883ef61cffd | |
parent | 5eeb1fd19c6797cc76ce308570dffe34cb82b24d (diff) |
git: fix git-log to git log
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 87e90baa..242f5b41 100644 --- a/Makefile.am +++ b/Makefile.am @@ -27,6 +27,6 @@ CLEANFILES = 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 |