Module: Mesa Branch: master Commit: f6ac3d0db67dd81f0aff754b977ed1277b33af63 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=f6ac3d0db67dd81f0aff754b977ed1277b33af63
Author: Nicolas Boichat <[email protected]> Date: Fri May 5 10:26:00 2017 +0800 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 <[email protected]> --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index a614458ab7..df3eb6b29a 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*) _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
