diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2009-07-07 17:52:50 -0400 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2009-07-11 20:31:17 +1000 |
commit | b0e1f6b3ffc36de124479b85d60b1364d8b00393 (patch) | |
tree | 9dde751e01a74407abf0131e680f7755cd4d516f /Makefile.am | |
parent | 2fa6919b6f4cb007e218185f15c8fda512afcb37 (diff) |
xev: use XORG_CHANGELOG macro to create ChangeLog. #22611
Build break: app/xev/Makefile.am: command not found: git-log
Adding the macro in configure.ac and use it in Makefile.am
Refer to: https://bugs.freedesktop.org/show_bug.cgi?id=22611
Tested: running autogen.sh, make and 'make dist'
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 3af1bda..009eec2 100644 --- a/Makefile.am +++ b/Makefile.am @@ -66,5 +66,6 @@ SUFFIXES = .$(APP_MAN_SUFFIX) .man .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) + $(CHANGELOG_CMD) + dist-hook: ChangeLog |