ref: 9eeb1f2fc3fba7da744590502bf284459d628bcc
parent: 424982bc41d84fadcd9e2054ecf47d45593f484f
parent: 310073868e6b8fbbe70f96abd04a232594e7970b
author: Johann Koenig <[email protected]>
date: Thu Jun 23 15:04:51 EDT 2016
Merge "Fail early when android target does not include --sdk-path"
--- a/build/make/configure.sh
+++ b/build/make/configure.sh
@@ -1015,6 +1015,10 @@
;;
android*)
+ if [ -z "${sdk_path}" ]; then
+ die "Must specify --sdk-path for Android builds."
+ fi
+
SDK_PATH=${sdk_path}
COMPILER_LOCATION=`find "${SDK_PATH}" \
-name "arm-linux-androideabi-gcc*" -print -quit`