From: Ludwig Nussel Date: Wed, 31 Mar 2010 08:55:01 +0000 (+0200) Subject: don't use emulator if host and target arch are equal X-Git-Tag: obs_2.0~52 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cf066079c1eafff0ef1c5433d5332809d29ae4fc;p=tools%2Fobs-build.git don't use emulator if host and target arch are equal --- 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