mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-07 06:35:27 +00:00
bump_version script also handled SOVERSION for library/Makefile
This commit is contained in:
parent
835481930a
commit
cf78ba2b89
|
@ -53,6 +53,10 @@ then
|
|||
[ $VERBOSE ] && echo "Bumping SOVERSION in library/CMakeLists.txt"
|
||||
sed -e "s/ SOVERSION [0-9]\+/ SOVERSION $SOVERSION/g" < library/CMakeLists.txt > tmp
|
||||
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
|
||||
mv tmp library/Makefile
|
||||
fi
|
||||
|
||||
[ $VERBOSE ] && echo "Bumping VERSION in include/polarssl/version.h"
|
||||
|
|
Loading…
Reference in a new issue