From 2bf8aa92217db61eb21d2a82326407b9dc654dd7 Mon Sep 17 00:00:00 2001 From: Rom Walton Date: Mon, 21 Oct 2013 13:19:33 -0400 Subject: [PATCH] client: fix Android OS detection --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 768e1e8973..784fdd9622 100644 --- a/configure.ac +++ b/configure.ac @@ -781,7 +781,7 @@ dnl or OS2 AM_CONDITIONAL(OS_OS2, [echo $host_os | grep '^os2' > /dev/null]) AM_CONDITIONAL(OS_ARM_LINUX, [echo $host_alias | grep '^arm-linux' > /dev/null]) dnl Android -AM_CONDITIONAL(OS_ANDROID, [echo $host_alias | grep '^android' > /dev/null]) +AM_CONDITIONAL(OS_ANDROID, [echo $boinc_platform | grep '^android' > /dev/null]) dnl Whether to build fcgi components AM_CONDITIONAL(ENABLE_FCGI,[test "${enable_fcgi}" = yes])