From aac675d09723c457707ef877ce4bb45055096d7b Mon Sep 17 00:00:00 2001 From: markus schnalke Date: Mon, 2 Nov 2015 08:16:10 +0100 Subject: [PATCH] Include a static copy of the CVS log in the dist tarball --- .gitignore | 1 + Makefile.in | 7 +++++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index d7aa3f5..7b8b03e 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,7 @@ /Makefile /stamp-h /stamp-h.in +/ChangeLog /config/Makefile /config/*.o /config/version.c diff --git a/Makefile.in b/Makefile.in index bd6d9a4..abe21a7 100644 --- a/Makefile.in +++ b/Makefile.in @@ -65,7 +65,7 @@ INSTALL_DATA = @INSTALL_DATA@ # distribute all files that are under version control ... # ... plus (for convenience): -DISTINCLUDE = config.h.in configure stamp-h.in sbr/dtimep.c +DISTINCLUDE = config.h.in configure stamp-h.in sbr/dtimep.c ChangeLog # ... minus (git stuff): DISTEXCLUDE = .git .gitignore @@ -107,7 +107,7 @@ mostlyclean-local: clean-local: mostlyclean-local distclean-local: clean-local - rm -f Makefile config.h config.status config.log config.cache stamp-h distname + rm -f Makefile config.h config.status config.log config.cache stamp-h distname ChangeLog realclean-local: distclean-local @@ -164,6 +164,9 @@ distname: sbr/dtimep.c: @cd $(srcdir)/sbr && $(MAKE) dtimep.c +ChangeLog: + @git whatchanged --format=fuller > $@ + # build mmh distribution distdir = `cat distname` mmhdist: $(DISTINCLUDE) distname -- 1.7.10.4