diff options
author | Alan Coopersmith <alan.coopersmith@sun.com> | 2007-04-16 20:34:31 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@sun.com> | 2007-04-16 20:34:31 -0700 |
commit | 2d43b8fa9b21bcf9f5c289ab1afba3e73c42f661 (patch) | |
tree | 3d503f3531c72f32703c2cba851720af0c85cf36 | |
parent | f7007821434313df1dc848a1e547922f65d4c7d5 (diff) |
Replace static ChangeLog with dist-hook to generate from git log
-rw-r--r-- | ChangeLog | 50 | ||||
-rw-r--r-- | Makefile.am | 7 |
2 files changed, 6 insertions, 51 deletions
diff --git a/ChangeLog b/ChangeLog deleted file mode 100644 index 90b6f08..0000000 --- a/ChangeLog +++ /dev/null @@ -1,50 +0,0 @@ -2006-03-10 Daniel Stone <daniel@freedesktop.org> - - * configure.ac: - Bump to 1.0.2; release. - - * setxkbmap.c: - Initialise vd.variant and vd.variant to NULL when failing to get - the active RMLVO components from the server. - -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-08 Kevin E. Martin <kem-at-freedesktop-dot-org> - - * Makefile.am: - * configure.ac: - Add configure options to allow hard-coded paths to be changed. - -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-09 Kevin E. Martin <kem-at-freedesktop-dot-org> - - * configure.ac: - Update package version number for X11R7 RC2 release. - -2005-10-20 Donnie Berkholz <spyderous@gentoo.org> - - * Makefile.am: Bug #4830 <https://bugs.freedesktop.org/show_bug.cgi?id=4830> - Set DFLT_XKB_CONFIG_ROOT instead of using hard-coded default. - -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 2adbd44..318b801 100644 --- a/Makefile.am +++ b/Makefile.am @@ -38,9 +38,14 @@ appmandir = $(APP_MAN_DIR) appman_DATA = $(appman_PRE:man=@APP_MAN_SUFFIX@) -EXTRA_DIST = $(appman_PRE) +EXTRA_DIST = $(appman_PRE) ChangeLog CLEANFILES = $(appman_DATA) +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 |