Revert "Replace SONAME with SOVERSION in makefile"
This reverts commit 418080010a1dcc1cdcb192e603a8c3b9656dcb1a.
In preparation of merging one external contribution that supersedes this.
diff --git a/scripts/bump_version.sh b/scripts/bump_version.sh
index 3ff5b60..ae74451 100755
--- a/scripts/bump_version.sh
+++ b/scripts/bump_version.sh
@@ -56,7 +56,7 @@
mv tmp library/CMakeLists.txt
[ $VERBOSE ] && echo "Bumping SOVERSION in library/Makefile"
- sed -e "s/SOVERSION=[0-9]\+/SOVERSION=$SOVERSION/g" < library/Makefile > tmp
+ sed -e "s/SONAME=libpolarssl.so.[0-9]\+/SONAME=libpolarssl.so.$SOVERSION/g" -e "s/DLEXT=so.[0-9]\+/DLEXT=so.$SOVERSION/g" < library/Makefile > tmp
mv tmp library/Makefile
fi