We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76da3b0 commit b9d66f8Copy full SHA for b9d66f8
1 file changed
platform/android_aosp/jsse_install.sh
@@ -94,6 +94,15 @@ else
94
95
cp $wolfssl_dir/README $aosp_wolfssl
96
cp $wolfssl_dir/COPYING $aosp_wolfssl
97
+
98
+ # Touch missing files if needed. If wolfSSL has been cloned from
99
+ # GitHub, they don't exist. Only in stable releases.
100
+ if [ ! -f "$aosp_wolfssl/wolfcrypt/src/selftest.c" ]; then
101
+ touch "$aosp_wolfssl/wolfcrypt/src/selftest.c"
102
+ fi
103
104
+ # Create blank options.h, wolfssljni includes it
105
+ cp "$aosp_wolfssl/wolfssl/options.h.in" "$aosp_wolfssl/wolfssl/options.h"
106
fi
107
108
# Copy wolfSSL JNI sources over to AOSP code tree
0 commit comments