Skip to content
Snippets Groups Projects
Commit 9ce5827f authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

made it split the version number on - too to make 7.7-blabla make a better

version number define in the header file
parent 97f1c936
No related branches found
No related tags found
No related merge requests found
......@@ -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=<STDIN>;@p=split("\\.",$a);for(0..2){printf STDOUT ("%02x",$p[0+$_]);}';
perl='$a=<STDIN>;@p=split("[\\.-]",$a);for(0..2){printf STDOUT ("%02x",$p[0+$_]);}';
numeric=`echo $libversion | perl -e "$perl"`
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment