From 1b5524282981ea73a517aed1b079fccf2e0e034b Mon Sep 17 00:00:00 2001 From: Daniel Colascione Date: Mon, 17 Oct 2016 11:54:54 -0700 Subject: [PATCH] Remove creation of empty toolchain directory: it confuses newer versions of the NDK --- configure.ac | 2 -- 1 file changed, 2 deletions(-) diff --git a/configure.ac b/configure.ac index abb9157..b4c9beb 100644 --- a/configure.ac +++ b/configure.ac @@ -92,14 +92,12 @@ if test "$platform" = "system"; then else if test -n "$BUILD_STUB" && test -z "$STUB_LOCAL"; then rm -rf toolchain - mkdir -p toolchain if test $host_cpu = i686; then toolchain_cpu=x86 else toolchain_cpu=arm fi echo "Configuring native NDK toolchain for $platform/$toolchain_cpu" - ${ANDROID_NDK_SHELL} \ "$andk"/build/tools/make-standalone-toolchain.sh \ --install-dir=toolchain --platform=$platform \