Skip to content

Commit

Permalink
- fix syntax error breaking qemu emulation check
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianschroeter committed Apr 2, 2014
1 parent ed0da3b commit 8f0203f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common_functions
Expand Up @@ -61,7 +61,7 @@ check_use_emulator() {
BUILD_ARCH="$BUILD_HOST_ARCH"
extend_build_arch
BUILD_ARCH=":$BUILD_ARCH:"
if test "$BUILD_ARCH" != "$BUILD_ARCH/:$arch:/" ; then
if test "$BUILD_ARCH" != "${BUILD_ARCH/:$arch:/}" ; then
# native supported arch, no emulator
BUILD_ARCH="$old_build_arch"
return 1
Expand Down

0 comments on commit 8f0203f

Please sign in to comment.