mirror of
https://github.com/yuzu-emu/mbedtls
synced 2024-11-24 05:48:23 +00:00
bump_version script also handled SOVERSION for library/Makefile
This commit is contained in:
parent
b076314ff8
commit
911807284d
1 changed files with 4 additions and 0 deletions
|
@ -54,6 +54,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