summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorraveit65 <[email protected]>2016-04-05 11:17:41 +0200
committerraveit65 <[email protected]>2016-04-05 11:17:41 +0200
commitfab47ebc7920ff9f5680037dbe7566bead8bdaf4 (patch)
tree32021e47389a75efd2b665bdd1bcebc748899db9
parent2b7c586de9525ad783700964454dc7324f15d405 (diff)
downloadmate-desktop-fab47ebc7920ff9f5680037dbe7566bead8bdaf4.tar.bz2
mate-desktop-fab47ebc7920ff9f5680037dbe7566bead8bdaf4.tar.xz
fix Changelog generation
taken from mate-common
-rw-r--r--Makefile.am20
1 files changed, 8 insertions, 12 deletions
diff --git a/Makefile.am b/Makefile.am
index 79a7504..5348b2c 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -41,18 +41,14 @@ MAINTAINERCLEANFILES = \
$(srcdir)/m4/gtk-doc.m4 \
$(srcdir)/m4/intltool.m4
-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
+
-include $(top_srcdir)/git.mk