aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2012-12-05 15:48:09 +0800
committerMilan Crha <mcrha@redhat.com>2012-12-05 15:48:09 +0800
commitacdbc6b72c1994c26729a655bdf7c07ae69cdff0 (patch)
tree82b34d194867f6f44253d148a63ed0af277d0101
parent2bbd4baef086b6b4a077e8e7225029059bd6c1f8 (diff)
downloadgsoc2013-evolution-acdbc6b72c1994c26729a655bdf7c07ae69cdff0.tar
gsoc2013-evolution-acdbc6b72c1994c26729a655bdf7c07ae69cdff0.tar.gz
gsoc2013-evolution-acdbc6b72c1994c26729a655bdf7c07ae69cdff0.tar.bz2
gsoc2013-evolution-acdbc6b72c1994c26729a655bdf7c07ae69cdff0.tar.lz
gsoc2013-evolution-acdbc6b72c1994c26729a655bdf7c07ae69cdff0.tar.xz
gsoc2013-evolution-acdbc6b72c1994c26729a655bdf7c07ae69cdff0.tar.zst
gsoc2013-evolution-acdbc6b72c1994c26729a655bdf7c07ae69cdff0.zip
Do not generate a ChangeLog file from 'git log'
-rw-r--r--ChangeLog10
-rw-r--r--Makefile.am16
2 files changed, 6 insertions, 20 deletions
diff --git a/ChangeLog b/ChangeLog
index 3d79cd517c..c26f1f78cf 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
-2010-03-31 The Evolution Team <evolution-hackers@gnome.org>
-
- * *: The ChangeLog is auto-generated when releasing. If you
- are seeing this, use 'git log' for a detailed list of changes.
+2012-12-05 The Evolution Team <evolution-hackers@gnome.org>
+ The ChangeLog is no longer auto-generated when releasing.
+ Get a clone of git repository and list changes with 'git log' there,
+ $ git clone git://git.gnome.org/evolution
+ or browse changes online at
+ http://git.gnome.org/browse/evolution/log/?h=master
diff --git a/Makefile.am b/Makefile.am
index 379c80f2c3..d9403ab794 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -151,20 +151,4 @@ DISTCHECK_CONFIGURE_FLAGS = \
--disable-weather \
--with-help
-# Generate a ChangeLog file from 'git log'
-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 \
- EVOLUTION_2_30_0..) > 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; \
- fi
-
-include $(top_srcdir)/git.mk