From 0ed4c2fb968887ef0480fae5d4d655bd434d737f Mon Sep 17 00:00:00 2001 From: Thanasis Antoniou Date: Mon, 21 Oct 2019 15:04:34 +0300 Subject: CONFIGURE: Comments on SDK and NDK env vars for Android --- configure | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'configure') diff --git a/configure b/configure index c5c1c63454..37317a7622 100755 --- a/configure +++ b/configure @@ -1849,11 +1849,16 @@ esac case $_host_os in android) if test -z "$ANDROID_SDK"; then - echo "Please set ANDROID_SDK in your environment. export ANDROID_SDK=" + # $ANDROID_SDK must be the path to the root of the Android SDK folder; + # The SDK should have installed the target SDK platform version as specified + # in the Android port's manifest files and project.properties + echo "Please set ANDROID_SDK in your environment. Export ANDROID_SDK=" exit 1 fi if test -z "$ANDROID_NDK"; then - echo "Please set ANDROID_NDK in your environment. export ANDROID_NDK=" + # $ANDROID_NDK must be the path to the root of the NDK folder; + # A ndk-build script should reside (in r14b this calls the actual ndk-build in the build subfolder) + echo "Please set ANDROID_NDK in your environment. Export ANDROID_NDK=" exit 1 fi ;; -- cgit v1.2.3