summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSébastien Wilmet <swilmet@informatique-libre.be>2022-05-07 01:07:52 +0200
committerSébastien Wilmet <swilmet@informatique-libre.be>2022-05-07 01:07:52 +0200
commit43a2f0d4d32337599ce510bd134b926d180404a7 (patch)
tree28cc01471376018eebc98ca5f663e386971bc5eb
parent7fa7a66ccd81657d99016cfd31ac0501ee7c5e24 (diff)
downloadgtk-doc-43a2f0d4d32337599ce510bd134b926d180404a7.tar.gz
ChangeLog: remove more stuff related to the ChangeLog
The NEWS file and git log are enough nowadays.
-rw-r--r--Makefile.am15
1 files changed, 0 insertions, 15 deletions
diff --git a/Makefile.am b/Makefile.am
index bb68852..55572c7 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -129,7 +129,6 @@ MAINTAINERCLEANFILES = \
$(GITIGNORE_MAINTAINERCLEANFILES_M4_LIBTOOL) \
INSTALL \
RELNOTES.txt \
- ChangeLog-?.?? \
gtk-doc-*.tar.xz \
build-aux
@@ -144,17 +143,3 @@ distuninstallcheck_listfiles = find . -type f -print
distuninstallcheck_listfiles += | grep -v '__pycache__'
-include $(top_srcdir)/git.mk
-
-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 $(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