diff options
author | Alan Coopersmith <alan.coopersmith@sun.com> | 2007-08-06 18:42:01 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@sun.com> | 2007-08-06 18:42:01 -0700 |
commit | 534c77b8a405fd178283e4fa8d7eb797b5966cbc (patch) | |
tree | 1781392df89ca4a2ebe569196069be0377a25d17 | |
parent | eff5594f8f68913db9ac60c9b38ec711823052ae (diff) |
Replace static ChangeLog with dist-hook to generate from git log
-rw-r--r-- | ChangeLog | 30 | ||||
-rw-r--r-- | Makefile.am | 12 |
2 files changed, 11 insertions, 31 deletions
diff --git a/ChangeLog b/ChangeLog deleted file mode 100644 index c7a87f5..0000000 --- a/ChangeLog +++ /dev/null @@ -1,30 +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-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-11-19 Kevin E. Martin <kem-at-freedesktop-dot-org> - - * configure.ac: - Update dependencies to work with separate build roots. - -2005-10-18 Kevin E. Martin <kem-at-freedesktop-dot-org> - - * configure.ac: - Update package version number for RC1 release. - diff --git a/Makefile.am b/Makefile.am index e4b9097..5a0b40f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -35,9 +35,19 @@ appmandir = $(APP_MAN_DIR) appman_DATA = $(appman_PRE:man=@APP_MAN_SUFFIX@) -EXTRA_DIST = $(appman_PRE) +EXTRA_DIST = $(appman_PRE) ChangeLog 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 |