summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Cloos <cloos@jhcloos.com>2007-12-06 16:37:42 -0500
committerJames Cloos <cloos@jhcloos.com>2007-12-06 16:37:42 -0500
commit6a059e8b817333e738317f3a148e24fa1d61f6ae (patch)
tree1c8a77a215defda313c96972a6a69fb1eb477ce8
parent1223e5a4b5f0f7f1f5ed9ca4ec656a0f61fe3c30 (diff)
Replace static ChangeLog with dist-hook to generate from git log
-rw-r--r--ChangeLog27
-rw-r--r--Makefile.am10
2 files changed, 10 insertions, 27 deletions
diff --git a/ChangeLog b/ChangeLog
deleted file mode 100644
index 9496e52..0000000
--- a/ChangeLog
+++ /dev/null
@@ -1,27 +0,0 @@
-2005-12-20 Kevin E. Martin <kem-at-freedesktop-dot-org>
-
- * configure.ac:
- Update package version for X11R7 release.
-
-2005-12-14 Kevin E. Martin <kem-at-freedesktop-dot-org>
-
- * configure.ac:
- Update package version number for final X11R7 release candidate.
-
-2005-12-09 Kevin E. Martin <kem-at-freedesktop-dot-org>
-
- * 100dpi/Makefile.am:
- * 75dpi/Makefile.am:
- * configure.ac:
- * cyrillic/Makefile.am:
- * misc/Makefile.am:
- Bug #5293: Use --with-top-fontdir instead of --with-aliasdir.
-
-2005-12-09 Kevin E. Martin <kem-at-freedesktop-dot-org>
-
- * 100dpi/Makefile.am:
- * 75dpi/Makefile.am:
- * configure.ac:
- * cyrillic/Makefile.am:
- * misc/Makefile.am:
- Bug #5293: Make aliasdir configurable (Donnie Berkholz).
diff --git a/Makefile.am b/Makefile.am
index 1f09f81..4777640 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -22,3 +22,13 @@
SUBDIRS = 100dpi 75dpi cyrillic misc
EXTRA_DIST = autogen.sh
+
+EXTRA_DIST += ChangeLog
+MAINTAINERCLEANFILES = ChangeLog
+
+.PHONY: 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