summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stone <daniel@fooishbar.org>2006-12-06 19:02:19 +0200
committerDaniel Stone <daniels@endtroducing.fooishbar.org>2006-12-06 19:02:19 +0200
commitcf44526713681ccfb6ef929a9c25ea650c5d1a32 (patch)
tree247c94c4a3568c5c0e492aa9db210642e5857549
parent528e313fd1f1ae6f2303d3963afe41545f55ef88 (diff)
downloadxorg-proto-x11proto-cf44526713681ccfb6ef929a9c25ea650c5d1a32.tar.gz
Makefile.am: make ChangeLog hook safer
Make ChangeLog hook as safe as possible.
-rw-r--r--Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index d1fd438..e3561f7 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -37,7 +37,7 @@ CLEANFILES=ChangeLog
.PHONY: ChangeLog
ChangeLog:
- (cd $(srcdir) && 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