From: SeokYeon Hwang Date: Sat, 20 Jun 2015 08:18:46 +0000 (+0900) Subject: script: fixed bug in emulator.sh X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.2~357 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8c6bef6b012bb34e710ee1902799379212547b59;p=sdk%2Femulator%2Fqemu.git script: fixed bug in emulator.sh Fixed bug when input argument has whitespaces. Change-Id: I4eeb75662a5755d5c8249874fce2e86c4a06c971 Signed-off-by: SeokYeon Hwang --- diff --git a/tizen/src/scripts/emulator.sh b/tizen/src/scripts/emulator.sh index a6096fbe9a..5b5ba3c24a 100755 --- a/tizen/src/scripts/emulator.sh +++ b/tizen/src/scripts/emulator.sh @@ -46,7 +46,7 @@ fi # run emulator if [ "$WITH_GDB" = "yes" ]; then - gdb --args $EMULATOR_BIN_PATH/emulator-x86 $@ + gdb --args $EMULATOR_BIN_PATH/emulator-x86 "$@" else - $EMULATOR_BIN_PATH/emulator-x86 $@ + $EMULATOR_BIN_PATH/emulator-x86 "$@" fi