From cf066079c1eafff0ef1c5433d5332809d29ae4fc Mon Sep 17 00:00:00 2001 From: Ludwig Nussel Date: Wed, 31 Mar 2010 10:55:01 +0200 Subject: [PATCH] don't use emulator if host and target arch are equal --- common_functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common_functions b/common_functions index df6a0c8..25fe0df 100755 --- a/common_functions +++ b/common_functions @@ -44,7 +44,7 @@ is_emulator_arch() { local arch for arch in $EMULATOR_ARCHS; do - if test "$BUILD_ARCH" = "$arch"; then + if test "$BUILD_ARCH" = "$arch" -a "$BUILD_HOST_ARCH" != "$arch"; then return 0 fi done -- 2.7.4