diff options
author | Alan Coopersmith <alan.coopersmith@sun.com> | 2007-01-02 14:22:47 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@sun.com> | 2007-01-02 14:22:47 -0800 |
commit | 9e489e45820f59461a897f889d3cb32307166937 (patch) | |
tree | d43b279bbccfa1183f8903c754e3478dfca0ee22 | |
parent | 88deaf1f2fdfee347331de6b589a28552d9c3dbd (diff) |
Replace static ChangeLog with dist-hook to generate from git log
-rw-r--r-- | ChangeLog | 25 | ||||
-rw-r--r-- | Makefile.am | 11 |
2 files changed, 10 insertions, 26 deletions
diff --git a/ChangeLog b/ChangeLog deleted file mode 100644 index b9e82e7..0000000 --- a/ChangeLog +++ /dev/null @@ -1,25 +0,0 @@ -2005-12-14 Kevin E. Martin <kem-at-freedesktop-dot-org> - - * configure.ac: - Update package version number for final X11R7 release candidate. - -2005-12-06 Kevin E. Martin <kem-at-freedesktop-dot-org> - - * Makefile.am: - Change *man_SOURCES ==> *man_PRE to fix autotools warnings. - -2005-12-03 Kevin E. Martin <kem-at-freedesktop-dot-org> - - * configure.ac: - Update package version number for X11R7 RC3 release. - -2005-10-18 Kevin E. Martin <kem-at-freedesktop-dot-org> - - * configure.ac: - Update package version number for RC1 release. - -2005-09-23 Kristian Høgsberg <krh@redhat.com> - - * AUTHORS: - * COPYING: - * README: Add some content to these. diff --git a/Makefile.am b/Makefile.am index b83c9e4..a4c4253 100644 --- a/Makefile.am +++ b/Makefile.am @@ -34,9 +34,18 @@ appmandir = $(APP_MAN_DIR) appman_DATA = $(appman_PRE:man=@APP_MAN_SUFFIX@) -EXTRA_DIST = $(appman_PRE) +EXTRA_DIST = $(appman_PRE) ChangeLog autogen.sh CLEANFILES = $(appman_DATA) +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 + SED = sed # Strings to replace in man pages |