diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-01-02 23:58:51 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-01-02 23:58:57 +0200 |
commit | 2ed074578b00582e40cf6380f629570d1eee3f71 (patch) | |
tree | 198704774fdeacfeada39377fa94274bad25d7ef | |
parent | c27e334661b62897a81a450ea9188f80e053261e (diff) |
Unbreak build with just the NDK without a 64-bit add-on tool-chain
Change-Id: I05c558b557cf083feb570f8ac14ecb75c1c21eb6
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index d5ed79d0de58..c60ae0115062 100644 --- a/configure.ac +++ b/configure.ac @@ -159,7 +159,7 @@ if test -n "$with_android_ndk"; then if test $build_os = linux-gnu; then case $build_cpu in x86_64) - case "`echo $ANDROID_NDK_HOME/toolchains/$android_cpu*-*$with_android_ndk_toolchain_version/prebuilt/linux-x86_64/bin`" in + case "`ls -d $ANDROID_NDK_HOME/toolchains/$android_cpu*-*$with_android_ndk_toolchain_version/prebuilt/linux-x86_64/bin 2>/dev/null`" in */bin|*/bin\ */bin*) toolchain_system=linux-x86_64 ;; |