From: Richard Purdie Date: Sat, 30 Mar 2013 16:44:27 +0000 (+0000) Subject: qemuimage-testlib: Fix quoting issue X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=92aeb31341b28b193d616ab5cf38af1b9673e37d;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git qemuimage-testlib: Fix quoting issue (From OE-Core rev: c8b411608bea2700e904141268f609eeee542ae2) Signed-off-by: Richard Purdie --- diff --git a/scripts/qemuimage-testlib b/scripts/qemuimage-testlib index 8fb2538490e..f791c527abe 100755 --- a/scripts/qemuimage-testlib +++ b/scripts/qemuimage-testlib @@ -446,7 +446,7 @@ Test_Create_Qemu() # Parse IP address of target from the qemu command line TARGET_IPADDR=`Test_Fetch_Target_IP $QEMUPID` echo "Target IP is ${TARGET_IPADDR}" - if [ ${TARGET_IPADDR} = "" -o "${TARGET_IPADDR}" = "0" ]; then + if [ "${TARGET_IPADDR}" = "" -o "${TARGET_IPADDR}" = "0" ]; then Test_Info "There is no qemu process or qemu ip address found, return failed" ps -wwf ps axww -O ppid