diff options
author | Julien Cristau <jcristau@debian.org> | 2008-06-10 21:57:11 +0200 |
---|---|---|
committer | Julien Cristau <jcristau@debian.org> | 2008-06-10 21:57:11 +0200 |
commit | e95226c25f2e3278c455473445c987c653bd0a12 (patch) | |
tree | 9b761cc6166887b65c3a042f3fdab038e0943430 | |
parent | 5b62ac1efec42ad725733d8acaf1c2450224a9d0 (diff) |
remove ChangeLog, add dist hook
Remove ChangeLog from the tree, and add a git dist hook to generate
it automatically.
-rw-r--r-- | ChangeLog | 39 | ||||
-rw-r--r-- | Makefile.am | 13 |
2 files changed, 13 insertions, 39 deletions
diff --git a/ChangeLog b/ChangeLog deleted file mode 100644 index e6c8681..0000000 --- a/ChangeLog +++ /dev/null @@ -1,39 +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> - - * man/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-12-01 Kevin E. Martin <kem-at-freedesktop-dot-org> - - * configure.ac: - Remove extraneous AC_MSG_RESULT. - -2005-11-29 Adam Jackson <ajax@freedesktop.org> - - * configure.ac: - Only build dlloader modules by default. - -2005-11-09 Kevin E. Martin <kem-at-freedesktop-dot-org> - - * configure.ac: - Update package version number for X11R7 RC2 release. - -2005-11-01 Kevin E. Martin <kem-at-freedesktop-dot-org> - - * configure.ac: - Update pkgcheck dependencies to work with separate build roots. diff --git a/Makefile.am b/Makefile.am index 7052905..36867bd 100644 --- a/Makefile.am +++ b/Makefile.am @@ -20,3 +20,16 @@ AUTOMAKE_OPTIONS = foreign SUBDIRS = src man + +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 + |