diff options
author | Daniel Stone <daniel@fooishbar.org> | 2006-12-06 18:56:33 +0200 |
---|---|---|
committer | Daniel Stone <daniels@endtroducing.fooishbar.org> | 2006-12-06 18:56:33 +0200 |
commit | 116299e6274c0c1bdd20b517fcc59ad95c438025 (patch) | |
tree | 0a882a8480891f6ea704fbf1156a76c097906384 | |
parent | 39fd9561a1cf899e933859279a2220b11e729548 (diff) |
Makefile.am: make ChangeLog hook safer
Make ChangeLog hook as safe as possible.
-rw-r--r-- | Makefile.am | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am index 4ee13af..b964031 100644 --- a/Makefile.am +++ b/Makefile.am @@ -28,6 +28,7 @@ EXTRA_DIST = xscrnsaver.pc.in autogen.sh ChangeLog CLEANFILES = ChangeLog -ChangeLog: FORCE - git-log > ChangeLog -FORCE: ChangeLog +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 |