diff options
author | raveit65 <[email protected]> | 2016-04-05 22:42:39 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-04-05 22:42:39 +0200 |
commit | 9b48935a0ea7e9cc1ed4ad15acf6b40ef986056f (patch) | |
tree | 621b289a51fa82b447141df8e8e1f40633268fca | |
parent | 25b248e3b9786abfd1938f09c54d6c82fc9fa2e2 (diff) | |
download | pluma-9b48935a0ea7e9cc1ed4ad15acf6b40ef986056f.tar.bz2 pluma-9b48935a0ea7e9cc1ed4ad15acf6b40ef986056f.tar.xz |
Fix Changelog generation
-rw-r--r-- | Makefile.am | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/Makefile.am b/Makefile.am index acb0ea0f..802d857c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -57,18 +57,14 @@ MAINTAINERCLEANFILES = \ DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc --disable-tests -dist-hook: - @if test -d "$(srcdir)/.git"; \ - then \ - echo Creating ChangeLog && \ - (GIT_DIR=$(top_srcdir)/.git \ - ./missing --run git log --stat -M -C --name-status --date=short --no-color) | \ - fmt --split-only > ChangeLog.tmp \ - && mv -f ChangeLog.tmp $(top_distdir)/ChangeLog \ - || ( rm -f ChangeLog.tmp ; \ - echo Failed to generate ChangeLog >&2 ); \ - else \ - echo A git clone is required to generate a ChangeLog >&2; \ +# Build ChangeLog from GIT history +ChangeLog: + $(AM_V_GEN) if test -d $(top_srcdir)/.git; then \ + GIT_DIR="$(top_srcdir)/.git" git log --stat > $@; \ fi +dist: ChangeLog + +.PHONY: ChangeLog + -include $(top_srcdir)/git.mk |