8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 00:03:02 +01:00
firebird-mirror/extern/icu/android/renameLinks.sh
Adriano dos Santos Fernandes d44f3cb94b Adjust Android x86/x64 build.
2022-09-07 10:03:01 -03:00

7 lines
169 B
Bash
Executable File

MAJOR=63
MINOR=1
rm -f libicu*so
for i in libicu*.${MINOR}; do mv $i `basename $i .${MINOR}`; done
for i in libicu*.${MAJOR}; do ln -s $i `basename $i .${MAJOR}`; done