summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Boichat <drinkcat@chromium.org>2017-05-05 10:26:00 +0800
committerJuan A. Suarez Romero <jasuarez@igalia.com>2017-06-01 04:25:10 +0200
commit012c198bb73e14323c12a95e22d73de56e258ca2 (patch)
tree305822de51d8e004030f02e77bd6c22ae1dc77b6
parent1534330eba3f0ff16cbe7faa8ac8449a357650fe (diff)
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> (cherry picked from commit f6ac3d0db67dd81f0aff754b977ed1277b33af63) Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index b8706784031..60ce75a58b9 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*)