From: Igor Mitsyanko Date: Tue, 23 Oct 2012 13:50:09 +0000 (+0400) Subject: build.sh: do not check if we're on linux to enable YaGL X-Git-Tag: TizenStudio_2.0_p2.3~1199^2~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d98ddd13d2f133e9cc4dc1953399cad54721d70f;p=sdk%2Femulator%2Fqemu.git build.sh: do not check if we're on linux to enable YaGL Signed-off-by: Igor Mitsyanko --- diff --git a/tizen/emulator_configure.sh b/tizen/emulator_configure.sh index 0ab2a4c..7eb7491 100755 --- a/tizen/emulator_configure.sh +++ b/tizen/emulator_configure.sh @@ -108,9 +108,7 @@ set_target() { arm) EMUL_TARGET_LIST="arm-softmmu" if [ -z "$YAGL_EN" ] && [ -z "$OPENGLES_EN" ] ; then - if test "$targetos" = "Linux" ; then - yagl_enable yes - fi + yagl_enable yes fi ;; all) @@ -118,10 +116,8 @@ set_target() { if [ -z "$VIRTIOGL_EN" ] ; then virtgl_enable yes fi - if [ -z "$YAGL_EN" ] && [ -z "$OPENGLES_EN" ] ; then - if test "$targetos" = "Linux" ; then - yagl_enable yes - fi + if [ -z "$YAGL_EN" ] && [ -z "$OPENGLES_EN" ] ; then + yagl_enable yes fi ;; esac