File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
android-database-sqlcipher Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ OPENSSL=openssl-$3
119
119
--install-dir ${TOOLCHAIN_DIR} \
120
120
--unified-headers
121
121
122
- if [ $? -ne 0 ]; then
122
+ if [[ $? -ne 0 ] ]; then
123
123
echo " Error executing make_standalone_toolchain.py for ${TOOLCHAIN_ARCH} "
124
124
exit 1
125
125
fi
@@ -134,15 +134,15 @@ OPENSSL=openssl-$3
134
134
${OPENSSL_CONFIGURE_OPTIONS} \
135
135
--sysroot=${TOOLCHAIN_DIR} /sysroot
136
136
137
- if [ $? -ne 0 ]; then
137
+ if [[ $? -ne 0 ] ]; then
138
138
echo " Error executing:./Configure ${CONFIGURE_ARCH} ${OPENSSL_CONFIGURE_OPTIONS} "
139
139
exit 1
140
140
fi
141
141
142
142
make clean
143
143
make build_libs
144
144
145
- if [ $? -ne 0 ]; then
145
+ if [[ $? -ne 0 ] ]; then
146
146
echo " Error executing make for platform:${SQLCIPHER_TARGET_PLATFORM} "
147
147
exit 1
148
148
fi
You can’t perform that action at this time.
0 commit comments