From: syeon.hwang Date: Wed, 28 Nov 2012 07:59:05 +0000 (+0900) Subject: build: Disable yagl on MacOS to build correctly X-Git-Tag: TizenStudio_2.0_p2.3~1197^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b244e238ddaf1308e30500bb4f675366a01f6631;p=sdk%2Femulator%2Fqemu.git build: Disable yagl on MacOS to build correctly Signed-off-by: SeokYeon Hwang --- diff --git a/tizen/emulator_configure.sh b/tizen/emulator_configure.sh index 8b7ce63..68442be 100755 --- a/tizen/emulator_configure.sh +++ b/tizen/emulator_configure.sh @@ -87,7 +87,7 @@ set_target() { ;; arm) EMUL_TARGET_LIST="arm-softmmu" - if [ -z "$YAGL_EN" ] && [ -z "$VIRTIOGL_EN" ] ; then + if [ -z "$YAGL_EN" ] && [ -z "$VIRTIOGL_EN" ] && [ "$targetos" != "Darwin" ] ; then yagl_enable yes fi ;; @@ -96,7 +96,7 @@ set_target() { if [ -z "$VIRTIOGL_EN" ] ; then virtgl_enable yes fi - if [ -z "$YAGL_EN" ] ; then + if [ -z "$YAGL_EN" ] && [ "$targetos" != "Darwin" ] ; then yagl_enable yes fi ;;