diff options
author | Daniel Stone <daniel@fooishbar.org> | 2006-12-06 18:58:09 +0200 |
---|---|---|
committer | Daniel Stone <daniels@endtroducing.fooishbar.org> | 2006-12-06 18:58:09 +0200 |
commit | cac788981906186442ddfb57a41f45911eb8223b (patch) | |
tree | 2da127c8d0cb71730f1d846f2323405df5444081 | |
parent | 011d632e8ef3f738b9158e66d6da6876e3b53905 (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 3951003..d3dd678 100644 --- a/Makefile.am +++ b/Makefile.am @@ -6,6 +6,7 @@ pkgconfig_DATA = ice.pc EXTRA_DIST=ice.pc.in 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 |