From: Daniel Stenberg Date: Mon, 12 Jan 2004 09:14:12 +0000 (+0000) Subject: cut the patch number before a '-' too, to enable '7.11.0-pre1' to use X-Git-Tag: curl-7_11_0~62 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=11e8600390e46f3e9d22ed41c98a16fbcd1698ea;p=curl cut the patch number before a '-' too, to enable '7.11.0-pre1' to use patch number zero. --- diff --git a/maketgz b/maketgz index a5866ec5b..4e7bdaef6 100755 --- a/maketgz +++ b/maketgz @@ -16,7 +16,7 @@ curlversion=$libversion major=`echo $libversion |cut -d. -f1 | sed -e "s/[^0-9]//g"` minor=`echo $libversion |cut -d. -f2 | sed -e "s/[^0-9]//g"` -patch=`echo $libversion |cut -d. -f3 | sed -e "s/[^0-9]//g"` +patch=`echo $libversion |cut -d. -f3 | cut -d- -f1 | sed -e "s/[^0-9]//g"` numeric=`echo "obase=16; $major*256*256 + $minor*256 + $patch" | bc`