From 3913117de6664b663fee1ff6b995b95c35a86026 Mon Sep 17 00:00:00 2001 From: Andreas Oberritter Date: Tue, 26 Oct 2010 15:43:35 +0000 Subject: ti: fix sh equality operator Signed-off-by: Andreas Oberritter Acked-by: Michael Smith --- recipes/ti/ti-codec-engine.inc | 4 ++-- recipes/ti/ti-linuxutils.inc | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'recipes') diff --git a/recipes/ti/ti-codec-engine.inc b/recipes/ti/ti-codec-engine.inc index 3c1e4184db..fdaebd5ccc 100644 --- a/recipes/ti/ti-codec-engine.inc +++ b/recipes/ti/ti-codec-engine.inc @@ -157,9 +157,9 @@ do_install() { { pwd cd ${D}/${installdir}/ti-codec-engine-examples/$i - if [ $(basename $i) == "audio1_ires" ] ; then + if [ $(basename $i) = "audio1_ires" ] ; then ln -s ../servers/audio1_ires/audio1_ires.${DSPSUFFIX} - elif [ $(basename $i) == "server_api_example" ] ; then + elif [ $(basename $i) = "server_api_example" ] ; then ln -s ../servers/server_api_example/audio_copy.${DSPSUFFIX} elif [ $(basename $i) != "." ] ; then ln -s ../servers/all_codecs/all.${DSPSUFFIX} diff --git a/recipes/ti/ti-linuxutils.inc b/recipes/ti/ti-linuxutils.inc index 073416ae5e..45b356f251 100644 --- a/recipes/ti/ti-linuxutils.inc +++ b/recipes/ti/ti-linuxutils.inc @@ -53,7 +53,7 @@ do_install () { EXEC_DIR="${D}${installdir}/ti-linuxutils-app/cmem-app" \ install # Install EDMA - if [ ${SOC_FAMILY} == "dm365" ] ; then + if [ ${SOC_FAMILY} = "dm365" ] ; then cd ${S}/packages/ti/sdo/linuxutils/edma/apps make \ LINUXKERNEL_INSTALL_DIR="${STAGING_KERNEL_DIR}" \ -- cgit v1.2