summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorraveit65 <[email protected]>2016-04-05 18:17:03 +0200
committerraveit65 <[email protected]>2016-04-05 18:17:03 +0200
commit264341a774156252d8866dfcb959e12189f04858 (patch)
tree01cab1e70899a8a557289ba130a1c37b8cfa0107
parent6f0dc7884e1c73917250c7e26698cf66715457df (diff)
downloadmate-system-monitor-264341a774156252d8866dfcb959e12189f04858.tar.bz2
mate-system-monitor-264341a774156252d8866dfcb959e12189f04858.tar.xz
Fix Changelog generation
-rw-r--r--Makefile.am21
1 files changed, 9 insertions, 12 deletions
diff --git a/Makefile.am b/Makefile.am
index 07f43f7..38912bf 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -37,16 +37,13 @@ DISTCLEANFILES = \
intltool-update \
mate-system-monitor.desktop
-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
+