From 4176e9ed24e7b79cefe3e7f4f5d73c7353781f1b Mon Sep 17 00:00:00 2001 From: Chris Ball Date: Mon, 16 Feb 2009 13:41:48 -0500 Subject: 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 --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3