From: Daniel Stenberg Date: Thu, 8 Mar 2001 09:23:11 +0000 (+0000) Subject: made it split the version number on - too to make 7.7-blabla make a better X-Git-Tag: curl-7_7-beta1~5 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9ce5827fc1c5198d6ba94a9e88fe06cfb40b0c8e;p=curl made it split the version number on - too to make 7.7-blabla make a better version number define in the header file --- diff --git a/maketgz b/maketgz index fcfef3f53..200d8b6b0 100755 --- a/maketgz +++ b/maketgz @@ -11,7 +11,7 @@ libversion="$version" # Now we have a section to get the major, minor and patch number from the # full version string. We create a single hexadecimal number from it '0xMMmmpp' # -perl='$a=;@p=split("\\.",$a);for(0..2){printf STDOUT ("%02x",$p[0+$_]);}'; +perl='$a=;@p=split("[\\.-]",$a);for(0..2){printf STDOUT ("%02x",$p[0+$_]);}'; numeric=`echo $libversion | perl -e "$perl"`