From d98ddd13d2f133e9cc4dc1953399cad54721d70f Mon Sep 17 00:00:00 2001 From: Igor Mitsyanko Date: Tue, 23 Oct 2012 17:50:09 +0400 Subject: [PATCH] build.sh: do not check if we're on linux to enable YaGL Signed-off-by: Igor Mitsyanko --- tizen/emulator_configure.sh | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/tizen/emulator_configure.sh b/tizen/emulator_configure.sh index 0ab2a4c445..7eb7491a94 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 -- 2.34.1