From 8c6bef6b012bb34e710ee1902799379212547b59 Mon Sep 17 00:00:00 2001 From: SeokYeon Hwang Date: Sat, 20 Jun 2015 17:18:46 +0900 Subject: [PATCH] script: fixed bug in emulator.sh Fixed bug when input argument has whitespaces. Change-Id: I4eeb75662a5755d5c8249874fce2e86c4a06c971 Signed-off-by: SeokYeon Hwang --- tizen/src/scripts/emulator.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.34.1