File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ EXTERNAL_DIR := ${CURDIR}/external
66SQLCIPHER_DIR := ${EXTERNAL_DIR}/sqlcipher
77LICENSE := SQLCIPHER_LICENSE
88ASSETS_DIR := assets
9+ OPENSSL_DIR := ${EXTERNAL_DIR}/openssl
910LATEST_TAG := $(shell git tag | sort -r | head -1)
1011SECOND_LATEST_TAG := $(shell git tag | sort -r | head -2 | tail -1)
1112RELEASE_DIR := "SQLCipher for Android ${LATEST_TAG}"
@@ -15,6 +16,8 @@ README := ${RELEASE_DIR}/README
1516init :
1617 git submodule update --init
1718 android update project -p .
19+ cd ${OPENSSL_DIR} && git clean -dfx && \
20+ git checkout -f && ./Configure dist
1821
1922all : build-external build-jni build-java copy-libs
2023
Original file line number Diff line number Diff line change 88 HOST_INFO=` uname -a`
99 case ${HOST_INFO} in
1010 Darwin* )
11- TOOLCHAIN_SYSTEM=darwin-x86_64
11+ TOOLCHAIN_SYSTEM=darwin-x86
1212 ;;
1313 Linux* )
1414 if [[ " ${HOST_INFO} " == * i686* ]]
You can’t perform that action at this time.
0 commit comments