summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stone <daniel@fooishbar.org>2006-12-06 18:58:09 +0200
committerDaniel Stone <daniels@endtroducing.fooishbar.org>2006-12-06 18:58:09 +0200
commitcac788981906186442ddfb57a41f45911eb8223b (patch)
tree2da127c8d0cb71730f1d846f2323405df5444081
parent011d632e8ef3f738b9158e66d6da6876e3b53905 (diff)
downloadxorg-lib-libICE-cac788981906186442ddfb57a41f45911eb8223b.tar.gz
Makefile.am: make ChangeLog hook safer
Make ChangeLog hook as safe as possible.
-rw-r--r--Makefile.am7
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