1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-28 00:21:48 +03:00

Replace SONAME with SOVERSION in makefile

- avoids duplication
- fixes warning about redefined rule with WINDOWS=1
This commit is contained in:
Manuel Pégourié-Gonnard
2015-02-13 13:15:13 +00:00
parent 5d46cca09a
commit 418080010a
2 changed files with 7 additions and 7 deletions

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/SOVERSION=[0-9]\+/SOVERSION=$SOVERSION/g" < library/Makefile > tmp
mv tmp library/Makefile
fi