summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stone <daniel@fooishbar.org>2006-12-06 19:01:27 +0200
committerDaniel Stone <daniels@endtroducing.fooishbar.org>2006-12-06 19:01:27 +0200
commit0eba2afb80bf17c0a2d2753ff92c1986211d92be (patch)
treee118dcf63cc0bc83f78bc800c9f2b74a29921e7a
parent8c2de974ec3df06a547906474ced5ffb4a07a6b5 (diff)
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 b1d6a13..6a3d46e 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -75,6 +75,6 @@ SUFFIXES = .$(APP_MAN_SUFFIX) .man
.PHONY: ChangeLog
ChangeLog:
- 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