diff options
author | infirit <[email protected]> | 2013-11-09 23:34:40 +0100 |
---|---|---|
committer | infirit <[email protected]> | 2013-11-09 23:37:44 +0100 |
commit | c77b0b7d7c85869a2dfe27515b5ec1fe33428fe5 (patch) | |
tree | 8baaa427fe5f919304e8af7233d2a503318ead88 | |
parent | 5346da1773f46cda1e9cfc7cfd5ba7b431369be4 (diff) | |
download | mate-terminal-c77b0b7d7c85869a2dfe27515b5ec1fe33428fe5.tar.bz2 mate-terminal-c77b0b7d7c85869a2dfe27515b5ec1fe33428fe5.tar.xz |
Bring Changelog gen up to date
-rw-r--r-- | Makefile.am | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/Makefile.am b/Makefile.am index abe2e10..76d85da 100644 --- a/Makefile.am +++ b/Makefile.am @@ -58,13 +58,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 |