From 9090be011c98b8b4fe070946dcb22ea7a256f82b Mon Sep 17 00:00:00 2001 From: infirit Date: Sat, 9 Nov 2013 23:34:40 +0100 Subject: [PATCH] Bring Changelog gen up to date --- Makefile.am | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Makefile.am b/Makefile.am index 8fe4218..30fe5f9 100644 --- a/Makefile.am +++ b/Makefile.am @@ -56,13 +56,18 @@ distuninstallcheck_listfiles = \ find -regex '.*/var/scrollkeeper/.*' -prune -or -type f -print # Build ChangeLog from GIT history -ChangeLog: - $(AM_V_GEN) if test -d $(top_srcdir)/.git; then \ - GIT_DIR="$(top_srcdir)/.git" git log --stat > $@; \ +dist-hook: + @if test -d "$(srcdir)/.git"; \ + then \ + echo Creating ChangeLog && \ + ( cd "$(top_srcdir)" && \ + echo '# Generated by Makefile. Do not edit.'; echo; \ + $(top_srcdir)/missing --run git log --stat ) > ChangeLog.tmp \ + && mv -f ChangeLog.tmp $(distdir)/ChangeLog \ + || ( rm -f ChangeLog.tmp ; \ + echo Failed to generate ChangeLog >&2 ); \ + else \ + echo A git clone is required to generate a ChangeLog >&2; \ fi -dist: ChangeLog - -.PHONY: ChangeLog - -include $(top_srcdir)/git.mk