ref: 310073868e6b8fbbe70f96abd04a232594e7970b
parent: 527a9fea767bf3c52d63096bdc5b6dd51615105b
author: Johann <[email protected]>
date: Wed Jun 22 12:31:12 EDT 2016
Fail early when android target does not include --sdk-path Change-Id: I07e7e63476a2e32e3aae123abdee8b7bbbdc6a8c
--- a/build/make/configure.sh
+++ b/build/make/configure.sh
@@ -1012,6 +1012,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`