diff options
author | raveit65 <[email protected]> | 2016-04-05 15:03:19 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-04-05 15:03:19 +0200 |
commit | 1789fa48bfd9ed1b55f822e7029079e56500d4a0 (patch) | |
tree | 3b04e444a7c86fe1d7412c463503e02f2dd45f3b | |
parent | 626d576271116a70f3b1d33f0c5d96fb9f5ff2af (diff) | |
download | mate-icon-theme-1789fa48bfd9ed1b55f822e7029079e56500d4a0.tar.bz2 mate-icon-theme-1789fa48bfd9ed1b55f822e7029079e56500d4a0.tar.xz |
Fix Changelog generation
-rw-r--r-- | Makefile.am | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/Makefile.am b/Makefile.am index a6554aa..fd05133 100644 --- a/Makefile.am +++ b/Makefile.am @@ -115,16 +115,13 @@ MAINTAINERCLEANFILES = \ po/Makefile.in.in \ po/$(GETTEXT_PACKAGE).pot -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 ) > 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; \ +# 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 + |