From fe42975cc2d2cbbdcccea796bbd9421da577b101 Mon Sep 17 00:00:00 2001 From: Timothy Sample Date: Fri, 24 May 2019 12:51:42 -0400 Subject: [PATCH] Distribute a ChangeLog stub for the first release. * Makefile.am (gen-ChangeLog): Do not generate the ChangeLog from Git. --- Makefile.am | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 65a1de7..60575d1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -384,8 +384,12 @@ dist-hook: gen-ChangeLog .PHONY: gen-ChangeLog gen-ChangeLog: - $(top_srcdir)/build-aux/gitlog-to-changelog \ + echo "This is the first release, so there are no changes yet!" \ > $(distdir)/ChangeLog-t +# Once we release a first version we can generate the ChangeLog from +# Git and have it only include changes since the first release. +# $(top_srcdir)/build-aux/gitlog-to-changelog \ +# > $(distdir)/ChangeLog-t rm -f $(distdir)/ChangeLog mv $(distdir)/ChangeLog-t $(distdir)/ChangeLog