From 656a784a7c43b619d51a47aab926d7c519cc3b4b Mon Sep 17 00:00:00 2001 From: Chong Lu Date: Fri, 4 Jul 2014 16:45:14 +0800 Subject: adt_installer: fix syntax error We need to check YOCTOADT_QEMU variable whether is equal to "y". So we should use "==" rather than "=". Signed-off-by: Chong Lu Signed-off-by: Richard Purdie --- .../installer/adt-installer/scripts/adt_installer_internal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta/recipes-devtools/installer') diff --git a/meta/recipes-devtools/installer/adt-installer/scripts/adt_installer_internal b/meta/recipes-devtools/installer/adt-installer/scripts/adt_installer_internal index f9c6d18a48..6a219a3929 100755 --- a/meta/recipes-devtools/installer/adt-installer/scripts/adt_installer_internal +++ b/meta/recipes-devtools/installer/adt-installer/scripts/adt_installer_internal @@ -169,7 +169,7 @@ for target_type in $YOCTOADT_TARGETS; do $SUDO sed -i -e "s%##SDKTARGETSYSROOT##%$target_sysroot%g" $env_script done -if [ "$YOCTOADT_QEMU" == "Y" ] || [ "$YOCTOADT_QEMU" = "y" ]; then +if [ "$YOCTOADT_QEMU" == "Y" ] || [ "$YOCTOADT_QEMU" == "y" ]; then echo_info "\nInstalling qemu native ..." $OPKG_INSTALL_NATIVE_CMD nativesdk-qemu &>> $YOCTOADT_INSTALL_LOG_FILE check_result -- cgit 1.2.3-korg