From: Daniel Stenberg Date: Thu, 27 Aug 2020 07:41:59 +0000 (+0200) Subject: maketgz: move to the same version number as curl itself X-Git-Tag: tiny-curl-7_72_0~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=010051c5cd28b78a7f16af55f4df1fe39f80f95a;p=thirdparty%2Fcurl.git maketgz: move to the same version number as curl itself --- diff --git a/maketgz b/maketgz index ee54b137f3..eac9497595 100755 --- a/maketgz +++ b/maketgz @@ -24,7 +24,7 @@ # ########################################################################### -CURL="tiny-curl-0.11" +CURL="tiny-curl" version=$1 if [ -z "$version" ]; then @@ -148,7 +148,7 @@ fi # echo "update man pages" -./scripts/updatemanpages.pl $version +./scripts/updatemanpages.pl $version >/dev/null # make the generated file newer than the man page touch src/tool_hugehelp.c @@ -162,8 +162,8 @@ make -s vc-ide echo "produce CHANGES" git log --pretty=fuller --no-color --date=short --decorate=full -1000 | ./scripts/log2changes.pl > CHANGES.dist -echo "generate patch set" -git diff origin/master >$CURL.patch.dist +echo "generate patch set from ${major}.${minor}.${patch}" +git diff curl-${major}_${minor}_${patch} >$CURL-${major}.${minor}.${patch}.patch.dist ############################################################################ #