diff options
Diffstat (limited to 'support/mkversion.sh')
-rwxr-xr-x | support/mkversion.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/mkversion.sh b/support/mkversion.sh index 6aca944..92fa77c 100755 --- a/support/mkversion.sh +++ b/support/mkversion.sh @@ -67,7 +67,7 @@ fi # increment the build version if that's what's required if [ -n "$inc_build" ]; then - build_ver=`expr $build_ver + 1` + build_ver=`expr 1 + $build_ver` fi # what's the patch level? |