From: Nicolas Boichat Date: Fri, 5 May 2017 02:26:00 +0000 (+0800) Subject: configure.ac: Also match -androideabi tuple X-Git-Tag: upstream/18.1.0~10089 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f6ac3d0db67dd81f0aff754b977ed1277b33af63;p=platform%2Fupstream%2Fmesa.git configure.ac: Also match -androideabi tuple On ARM Android platforms, the host_os tuple should be linux-androideabi, so let's match both -android and -androideabi (or any other -android* tuple) to determine if we should do an Android build. Reviewed-by: Chad Versace --- diff --git a/configure.ac b/configure.ac index a614458..df3eb6b 100644 --- a/configure.ac +++ b/configure.ac @@ -269,7 +269,7 @@ DEFINES="-D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS" AC_SUBST([DEFINES]) android=no case "$host_os" in -*-android) +*-android*) android=yes ;; linux*|*-gnu*|gnu*|cygwin*)