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 <chadversary@chromium.org>
This commit is contained in:
Nicolas Boichat 2017-05-05 10:26:00 +08:00 committed by Chad Versace
parent e05e3e07ab
commit f6ac3d0db6
1 changed files with 1 additions and 1 deletions

View File

@ -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*)