From 87ebfbc56abe16de6f84f559728a40f63d44006a Mon Sep 17 00:00:00 2001 From: James Cloos Date: Thu, 6 Dec 2007 16:38:26 -0500 Subject: Replace static ChangeLog with dist-hook to generate from git log --- ChangeLog | 49 ------------------------------------------------- Makefile.am | 10 ++++++++++ 2 files changed, 10 insertions(+), 49 deletions(-) delete mode 100644 ChangeLog diff --git a/ChangeLog b/ChangeLog deleted file mode 100644 index 19e0f1d..0000000 --- a/ChangeLog +++ /dev/null @@ -1,49 +0,0 @@ -2006-04-26 Adam Jackson - - * configure.ac: - Bump to 1.0.3 - -2006-04-02 Adam Jackson - - * src/Xdamage.c: - Coverity #574: Plug a leak on the error path. - -2005-12-14 Kevin E. Martin - - * configure.ac: - Update package version number for final X11R7 release candidate. - -2005-12-03 Kevin E. Martin - - * configure.ac: - Update package version number for X11R7 RC3 release. - -2005-11-19 Kevin E. Martin - - * xdamage.pc.in: - Update pkgconfig files to separate library build-time dependencies - from application build-time dependencies. - * configure.ac: - Update dependencies to work with separate build roots. - -2005-11-09 Kevin E. Martin - - * configure.ac: - Update package version number for X11R7 RC2 release. - -2005-11-01 Kevin E. Martin - - * configure.ac: - Update pkgcheck dependencies to work with separate build roots. - -2005-07-08 Keith Packard - - * .cvsignore: - * src/.cvsignore: - * src/Makefile.am: - Add .cvsignore files - Switch _la_CFLAGS for AM_CFLAGS to clean up directory - -Tue May 17 12:39:30 2005 Søren Sandmann - - * Add build system diff --git a/Makefile.am b/Makefile.am index 3279789..358e7f5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -31,3 +31,13 @@ pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = xdamage.pc EXTRA_DIST = xdamage.pc.in autogen.sh + +EXTRA_DIST += ChangeLog +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 -- cgit v1.2.1