Skip to content

Commit 4259a6d

Browse files
authored
Merge pull request hyperledger-indy#950 from faisal00813/android_arm_fix
Fixed the hardcoded arm architecture in prebuilt dependency download
2 parents f58e5fd + 856ae24 commit 4259a6d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libindy/build_scripts/android/build.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ download_and_unzip_deps(){
2525
find . -name "*.zip" | xargs -P 5 -I FILENAME sh -c 'unzip -o -d "$(dirname "FILENAME")" "FILENAME"'
2626
popd
2727
ln -s indy-android-dependencies/prebuilt dependencies
28-
export OPENSSL_DIR=dependencies/openssl/openssl_arm
29-
export SODIUM_DIR=dependencies/sodium/libsodium_arm
30-
export LIBZMQ_DIR=dependencies/zmq/libzmq_arm
28+
export OPENSSL_DIR=dependencies/openssl/openssl_${TARGET_ARCH}
29+
export SODIUM_DIR=dependencies/sodium/libsodium_${TARGET_ARCH}
30+
export LIBZMQ_DIR=dependencies/zmq/libzmq_${TARGET_ARCH}
3131
}
3232

3333
if [ -z "${TARGET_ARCH}" ]; then

0 commit comments

Comments
 (0)