summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorraveit65 <[email protected]>2016-04-07 13:15:06 +0200
committerraveit65 <[email protected]>2016-04-07 13:15:06 +0200
commit9a122adb3f39838b40ec44558ad0c72d90c9549c (patch)
tree8214509231547f6a169441686b99da516d45bcf9
parentd51dddc40f41348de816167bd9e31698ba201427 (diff)
downloadmate-terminal-9a122adb3f39838b40ec44558ad0c72d90c9549c.tar.bz2
mate-terminal-9a122adb3f39838b40ec44558ad0c72d90c9549c.tar.xz
Fix Changelog generation
-rw-r--r--Makefile.am19
1 files changed, 7 insertions, 12 deletions
diff --git a/Makefile.am b/Makefile.am
index 07ae578..896e361 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -59,18 +59,13 @@ MAINTAINERCLEANFILES = \
$(NULL)
# Build ChangeLog from GIT history
-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; \
+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