diff options
author | Daniel Stone <daniel@fooishbar.org> | 2006-12-06 19:01:27 +0200 |
---|---|---|
committer | Daniel Stone <daniels@endtroducing.fooishbar.org> | 2006-12-06 19:01:27 +0200 |
commit | 0eba2afb80bf17c0a2d2753ff92c1986211d92be (patch) | |
tree | e118dcf63cc0bc83f78bc800c9f2b74a29921e7a | |
parent | 8c2de974ec3df06a547906474ced5ffb4a07a6b5 (diff) |
Makefile.am: make ChangeLog hook safer
Make ChangeLog hook as safe as possible.
-rw-r--r-- | Makefile.am | 2 |
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 |