diff options
author | Thanasis Antoniou | 2019-10-21 15:04:34 +0300 |
---|---|---|
committer | Thanasis Antoniou | 2019-10-21 15:04:34 +0300 |
commit | 0ed4c2fb968887ef0480fae5d4d655bd434d737f (patch) | |
tree | 1be502903e6ff3c5057b66d5fb2ff75b3b5554f1 /configure | |
parent | 4e248a70bf9ca91d94c614f72f50b81f043fcf0e (diff) | |
download | scummvm-rg350-0ed4c2fb968887ef0480fae5d4d655bd434d737f.tar.gz scummvm-rg350-0ed4c2fb968887ef0480fae5d4d655bd434d737f.tar.bz2 scummvm-rg350-0ed4c2fb968887ef0480fae5d4d655bd434d737f.zip |
CONFIGURE: Comments on SDK and NDK env vars for Android
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -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=<path to 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=<path to Android SDK>" exit 1 fi if test -z "$ANDROID_NDK"; then - echo "Please set ANDROID_NDK in your environment. export ANDROID_NDK=<path to 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=<path to Android NDK>" exit 1 fi ;; |