summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormonsta <[email protected]>2016-04-08 11:24:46 +0300
committermonsta <[email protected]>2016-04-08 11:24:46 +0300
commita2cb3fef099c78e423202f4994c0e8013c781553 (patch)
tree8e6d6b2057c6ee63fd80b7c728bc94db2076c15a
parentdd5f18398ca0d6ae1f73aedccbc69a03bd76703f (diff)
downloadmate-indicator-applet-a2cb3fef099c78e423202f4994c0e8013c781553.tar.bz2
mate-indicator-applet-a2cb3fef099c78e423202f4994c0e8013c781553.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 1327c90..220d315 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -15,16 +15,13 @@ EXTRA_DIST = \
autogen.sh \
COPYING.LGPL
-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; \
+# 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
+