[Scummvm-git-logs] scummvm master -> 0ed4c2fb968887ef0480fae5d4d655bd434d737f
antoniou79
antoniou at cti.gr
Mon Oct 21 14:05:13 CEST 2019
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
0ed4c2fb96 CONFIGURE: Comments on SDK and NDK env vars for Android
Commit: 0ed4c2fb968887ef0480fae5d4d655bd434d737f
https://github.com/scummvm/scummvm/commit/0ed4c2fb968887ef0480fae5d4d655bd434d737f
Author: Thanasis Antoniou (a.antoniou79 at gmail.com)
Date: 2019-10-21T15:04:34+03:00
Commit Message:
CONFIGURE: Comments on SDK and NDK env vars for Android
Changed paths:
configure
diff --git a/configure b/configure
index c5c1c63..37317a7 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=<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
;;
More information about the Scummvm-git-logs
mailing list