summaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
authorDaniel Stone <daniel@fooishbar.org>2006-12-06 18:53:29 +0200
committerDaniel Stone <daniels@endtroducing.fooishbar.org>2006-12-06 18:53:29 +0200
commitfefdba6ed5ef56abf0da9caaca64af5a5e7895b0 (patch)
treebe7a4403a7ee02d1f5777f81898fdd4343719696 /Makefile.am
parent90e34a4aa471b6e446345ba8095990e360a41570 (diff)
downloadxorg-lib-libXau-fefdba6ed5ef56abf0da9caaca64af5a5e7895b0.tar.gz
Makefile.am: make ChangeLog hook safer
Make ChangeLog hook as safe as possible.
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 3e917e5..b597622 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -90,6 +90,6 @@ Xau.$(LIB_MAN_SUFFIX): $(srcdir)/Xau.man
.PHONY: ChangeLog
ChangeLog:
- GIT_DIR=${srcdir}/.git git-log > 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)
dist-hook: ChangeLog