diff options
author | Daniel Stone <daniel@fooishbar.org> | 2006-12-06 19:00:07 +0200 |
---|---|---|
committer | Daniel Stone <daniels@endtroducing.fooishbar.org> | 2006-12-06 19:00:07 +0200 |
commit | 2f0089d24ab28f3325a5da7a136873eefb0bd97f (patch) | |
tree | 98d5aa52351e0c9aa784a8086a410c12d494530b | |
parent | 978e98c43245671b4fdedb42371260f5fa139f14 (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 273cbed..53e22c6 100644 --- a/Makefile.am +++ b/Makefile.am @@ -29,7 +29,7 @@ EXTRA_DIST = xv.pc.in autogen.sh .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 |