diff options
author | Andreas Oberritter <obi@opendreambox.org> | 2010-10-26 15:43:35 +0000 |
---|---|---|
committer | Michael Smith <msmith@cbnco.com> | 2010-11-14 18:36:56 -0500 |
commit | 3913117de6664b663fee1ff6b995b95c35a86026 (patch) | |
tree | a26972845419fe7db72f4ed30ca6124eb50ccd24 /recipes | |
parent | 5467e72ba84aa47346cf4911db19c468d2036d27 (diff) | |
download | openembedded-3913117de6664b663fee1ff6b995b95c35a86026.tar.gz |
ti: fix sh equality operator
Signed-off-by: Andreas Oberritter <obi@opendreambox.org>
Acked-by: Michael Smith <msmith@cbnco.com>
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/ti/ti-codec-engine.inc | 4 | ||||
-rw-r--r-- | recipes/ti/ti-linuxutils.inc | 2 |
2 files changed, 3 insertions, 3 deletions
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}" \ |