From 1182c8bdcd2e8747c8ca5092b97ea2cf0607339e Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 21 Jun 2010 22:42:36 +0200 Subject: [PATCH] maketgz: produce CHANGES automatically with the 1000 most recent commits It passes the git log output through 'log2changes.pl' to produce the lot. --- maketgz | 3 +++ 1 file changed, 3 insertions(+) diff --git a/maketgz b/maketgz index a4c5614ba..d4bcd269a 100755 --- a/maketgz +++ b/maketgz @@ -126,6 +126,9 @@ make -s html echo "make pdf" make -s pdf +echo "produce CHANGES" +git log --pretty=fuller --no-color --date=short --decorate=full -1000 | ./log2changes.pl > CHANGES.dist + ############################################################################ # # Now run make dist to generate a tar.gz archive