Fix soname mistake

This commit is contained in:
Manuel Pégourié-Gonnard 2015-02-10 17:00:42 +01:00
parent 539d972a25
commit 015e48df6e
2 changed files with 2 additions and 2 deletions

View file

@ -22,7 +22,7 @@ ifdef SHARED
CFLAGS += -fPIC
endif
SONAME=libmbedtls.so.7
SONAME=libmbedtls.so.8
DLEXT=so.8
# OSX shared library extension:

View file

@ -56,7 +56,7 @@ then
mv tmp library/CMakeLists.txt
[ $VERBOSE ] && echo "Bumping SOVERSION in library/Makefile"
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
sed -e "s/SONAME=libmbedtls.so.[0-9]\+/SONAME=libmbedtls.so.$SOVERSION/g" -e "s/DLEXT=so.[0-9]\+/DLEXT=so.$SOVERSION/g" < library/Makefile > tmp
mv tmp library/Makefile
fi