diff options
author | Alan Coopersmith <alan.coopersmith@sun.com> | 2007-08-27 16:36:47 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@sun.com> | 2007-08-27 16:36:47 -0700 |
commit | 4eca5d1de51926b640fd3d38db1a683740c64dd0 (patch) | |
tree | 0849940f96ccdcbfc6721645da600e3773380a45 | |
parent | 44d9468edbbbb19d73c488345ceef1073d1df3a7 (diff) |
Replace static ChangeLog with dist-hook to generate from git log
-rw-r--r-- | ChangeLog | 70 | ||||
-rw-r--r-- | Makefile.am | 10 |
2 files changed, 9 insertions, 71 deletions
diff --git a/ChangeLog b/ChangeLog deleted file mode 100644 index 490a352..0000000 --- a/ChangeLog +++ /dev/null @@ -1,70 +0,0 @@ -2006-04-26 Adam Jackson <ajax@freedesktop.org> - - * configure.ac: - Bump to 1.0.2 - -2006-04-06 Alan Coopersmith <alan.coopersmith@sun.com> - - * xset.c (set_lock): - Free modifier map when done with it (Coverity #823 & 824) - - * xset.c (xkbset_repeatrate): - Free Xkb keyboard description when done with it (Coverity #825) - -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-20 Alan Coopersmith <alan.coopersmith@sun.com> - - * configure.ac: - Change dependency from xmu to xmuu since the full xmu - (with all its baggage like Xt) is not needed here. - -2005-11-19 Alan Coopersmith <alan.coopersmith@sun.com> - - * configure.ac: - Fix typo in XSET_LIBS setting so libXext is linked in properly. - -2005-11-19 Kevin E. Martin <kem-at-freedesktop-dot-org> - - * configure.ac: - Update dependencies to work with separate build roots. - -2005-11-09 Kevin E. Martin <kem-at-freedesktop-dot-org> - - * configure.ac: - Update package version number for X11R7 RC2 release. - -2005-10-20 Eric Anholt <anholt@FreeBSD.org> - - * configure.ac: - Fix check for fontcache to look for "xfontcache" (Bill Crawford) - -2005-10-18 Kevin E. Martin <kem-at-freedesktop-dot-org> - - * configure.ac: - Update package version number for RC1 release. - -2005-08-29 Daniel Stone <daniel@freedesktop.org> - - Bump to 0.99.1. - - * configure.ac: - Add support for more extensions. diff --git a/Makefile.am b/Makefile.am index 765c7a1..1ec91cd 100644 --- a/Makefile.am +++ b/Makefile.am @@ -35,8 +35,16 @@ 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 |