summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Ball <cjb@laptop.org>2009-02-16 13:41:48 -0500
committerChris Ball <cjb@laptop.org>2009-02-16 13:45:18 -0500
commit4176e9ed24e7b79cefe3e7f4f5d73c7353781f1b (patch)
treeb834627ad92971b8ce214c506dd3211ba2d07597
parent990ff710c6220cc3d1ba6b9e8fb972bd168b4472 (diff)
Makefile.am: use "git log" instead of "git-log"
"git-log" doesn't work on my Fedora machine, but "git log" should work everywhere. Some distributions choose not to ship all the git aliases. Signed-off-by: Chris Ball <cjb@laptop.org>
-rw-r--r--Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index e5d6028..adb32f8 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -28,6 +28,6 @@ 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