mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 15:48:49 -05:00
cut the patch number before a '-' too, to enable '7.11.0-pre1' to use
patch number zero.
This commit is contained in:
parent
93aea06ed9
commit
11e8600390
2
maketgz
2
maketgz
@ -16,7 +16,7 @@ curlversion=$libversion
|
|||||||
|
|
||||||
major=`echo $libversion |cut -d. -f1 | sed -e "s/[^0-9]//g"`
|
major=`echo $libversion |cut -d. -f1 | sed -e "s/[^0-9]//g"`
|
||||||
minor=`echo $libversion |cut -d. -f2 | 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`
|
numeric=`echo "obase=16; $major*256*256 + $minor*256 + $patch" | bc`
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user