diff options
author | raveit65 <[email protected]> | 2016-04-06 09:50:01 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-04-06 09:50:01 +0200 |
commit | 0aac274511a86fa340e3d3b52cbb37af8240d156 (patch) | |
tree | d4d79bb051a21c0510054673219462e768f220ee /Makefile.am | |
parent | 43c7714b6216cf695f237c6455855a969b7da480 (diff) | |
download | mate-settings-daemon-0aac274511a86fa340e3d3b52cbb37af8240d156.tar.bz2 mate-settings-daemon-0aac274511a86fa340e3d3b52cbb37af8240d156.tar.xz |
Fix Changelog generation
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/Makefile.am b/Makefile.am index a4fa8a1..c7631b4 100644 --- a/Makefile.am +++ b/Makefile.am @@ -18,16 +18,13 @@ EXTRA_DIST = \ DISTCLEANFILES = \ $(NULL) -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 + |