Skip to content

Commit

Permalink
Correct extraction of minor version component
Browse files Browse the repository at this point in the history
  • Loading branch information
cnweaver committed Nov 15, 2018
1 parent 656893c commit eedb0f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ INSTALL_LIBDIR=lib
VERSION_NUM=100200
VERSION=`echo $VERSION_NUM | awk '{
major = int($1/100000);
minor = ($1/100)%1000;
minor = int($1/100)%1000;
patch = $1%100;
print major"."minor"."patch;
}'`
Expand Down

0 comments on commit eedb0f1

Please sign in to comment.