diff options
author | Nicolas Boichat <[email protected]> | 2017-05-05 10:26:00 +0800 |
---|---|---|
committer | Chad Versace <[email protected]> | 2017-05-05 15:39:38 -0700 |
commit | f6ac3d0db67dd81f0aff754b977ed1277b33af63 (patch) | |
tree | 3c8642c6a6647dfc14bc150a87463c1628829873 /configure.ac | |
parent | e05e3e07ab47a8108b8a8d257d7e8acc1f7cf584 (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 <[email protected]>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index a614458ab7c..df3eb6b29ac 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*) |