We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad377b0 commit 4dc83bbCopy full SHA for 4dc83bb
android-database-sqlcipher/src/main/external/patch-versions.sh
@@ -0,0 +1,21 @@
1
+#!/bin/bash
2
+
3
+set -x
4
5
+for so in **/libssl.so
6
+do
7
+ greadelf -d $so | grep SONAME | grep 1.1
8
+ if [ $? -eq 0 ]; then
9
+ patchelf --set-soname libssl.so $so
10
+ patchelf --remove-needed libcrypto.so.1.1 $so
11
+ patchelf --add-needed libcrypto.so $so
12
+ fi
13
+done
14
15
+for so in **/libcrypto.so
16
17
18
19
+ patchelf --set-soname libcrypto.so $so
20
21
0 commit comments