diff options
author | Alan Coopersmith <alan.coopersmith@sun.com> | 2007-08-06 15:36:57 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@sun.com> | 2007-08-06 15:36:57 -0700 |
commit | 0c458e28ff7a3f85c0041ac0f01791853c6bdf28 (patch) | |
tree | 9dc2db7a745397ef04a477b3dead90cc59790ede | |
parent | c94628bef06ea76be371eb0dc8b60bdf0e0009e9 (diff) |
Replace static changelog with dist-hook to generate from git log
-rw-r--r-- | ChangeLog | 44 | ||||
-rw-r--r-- | Makefile.am | 10 |
2 files changed, 10 insertions, 44 deletions
diff --git a/ChangeLog b/ChangeLog deleted file mode 100644 index d646831..0000000 --- a/ChangeLog +++ /dev/null @@ -1,44 +0,0 @@ -2006-04-26 Adam Jackson <ajax@freedesktop.org> - - * configure.ac: - Bump to 1.0.2 - -2006-03-28 Alan Coopersmith <alan.coopersmith@sun.com> - - * Clock.c: - * XClock-color.ad: - Bug #6420 <https://bugs.freedesktop.org/show_bug.cgi?id=6420> - Patch #5103 <https://bugs.freedesktop.org/attachment.cgi?id=5103> - xclock code contains wrong "ifdef RENDER" (Kirill Belokurov) - -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-07 Kevin E. Martin <kem-at-freedesktop-dot-org> - - * Makefile.am: - * configure.ac: - Change to use the app-defaults default dir configured in libXt. - -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. - diff --git a/Makefile.am b/Makefile.am index 48c056c..b3169da 100644 --- a/Makefile.am +++ b/Makefile.am @@ -51,6 +51,7 @@ SUFFIXES = .ad appdefault_DATA = $(APPDEFAULTFILES) EXTRA_DIST = \ + ChangeLog \ $(APPDEFAULTFILES:%=%.ad) \ clmask.bit \ clock.bit @@ -64,6 +65,15 @@ appman_DATA = $(appman_PRE:man=@APP_MAN_SUFFIX@) EXTRA_DIST += $(appman_PRE) 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 |