From ff15feb47895175d9df680c668508f80ab562122 Mon Sep 17 00:00:00 2001 From: Andreas Oberritter Date: Tue, 26 Oct 2010 15:43:22 +0000 Subject: [PATCH] rox: fix sh equality operator Signed-off-by: Andreas Oberritter Acked-by: Michael Smith --- recipes/rox/rox-filer_2.5.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/rox/rox-filer_2.5.bb b/recipes/rox/rox-filer_2.5.bb index 5216d7bc4b..a28ffeeb4b 100644 --- a/recipes/rox/rox-filer_2.5.bb +++ b/recipes/rox/rox-filer_2.5.bb @@ -45,7 +45,7 @@ do_install() { for f in ${WORKDIR}/${P}/ROX-Filer/Messages/*.gmo; do export ROXTMP=`basename $f .gmo` ; - if [ $ROXTMP == "sp" ]; then + if [ $ROXTMP = "sp" ]; then export ROXTMP="es" ; fi install -d ${D}${datadir}/locale/$ROXTMP/LC_MESSAGES; -- 2.39.5