summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCosimo Cecchi <cosimoc@gnome.org>2013-06-17 16:55:53 -0700
committerCosimo Cecchi <cosimoc@gnome.org>2013-06-17 17:06:57 -0700
commit3d82365d25f4a7ef83307864d8f554764eb290a6 (patch)
treeb26bf08b1fb520989ed928b2f67610d9c02139c7
parente07341f53d2ae588621f388d9714efeb78bda9f8 (diff)
downloadnautilus-3d82365d25f4a7ef83307864d8f554764eb290a6.tar.gz
build: don't autogenerate ChangeLog
Make the tarball smaller, and other GNOME projects don't do this anymore nowadays - use git log.
-rw-r--r--Makefile.am22
1 files changed, 0 insertions, 22 deletions
diff --git a/Makefile.am b/Makefile.am
index 53526021d..cd0bb1eff 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -53,32 +53,10 @@ MAINTAINERCLEANFILES = \
$(srcdir)/omf.make \
$(srcdir)/xmldocs.make \
$(srcdir)/gtk-doc.make \
- $(srcdir)/ChangeLog \
`find "$(srcdir)" -type f -name Makefile.in -print`
DISTCHECK_CONFIGURE_FLAGS = --disable-update-mimedb --enable-gtk-doc
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
-distclean-local:
- if test "$(srcdir)" = "."; then :; else \
- rm -f ChangeLog; \
- fi
-
-ChangeLog:
- @echo Creating $@
- @if test -d "$(srcdir)/.git"; then \
- (GIT_DIR=$(top_srcdir)/.git ./missing --run git log --stat -M -C --name-status --date=short --no-color) | fmt --split-only > $@.tmp \
- && mv -f $@.tmp $@ \
- || ($(RM) $@.tmp; \
- echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \
- (test -f $@ || echo git-log is required to generate this file >> $@)); \
- else \
- test -f $@ || \
- (echo A git checkout and git-log is required to generate ChangeLog >&2 && \
- echo A git checkout and git-log is required to generate this file >> $@); \
- fi
-
-.PHONY: ChangeLog
-
-include $(top_srcdir)/git.mk