[oe-commits] Andreas Oberritter : rox: fix sh equality operator

git version control git at git.openembedded.org
Sun Nov 14 23:43:38 UTC 2010


Module: openembedded.git
Branch: master
Commit: ff15feb47895175d9df680c668508f80ab562122
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=ff15feb47895175d9df680c668508f80ab562122

Author: Andreas Oberritter <obi at opendreambox.org>
Date:   Tue Oct 26 15:43:22 2010 +0000

rox: fix sh equality operator

Signed-off-by: Andreas Oberritter <obi at opendreambox.org>
Acked-by: Michael Smith <msmith at cbnco.com>

---

 recipes/rox/rox-filer_2.5.bb |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/recipes/rox/rox-filer_2.5.bb b/recipes/rox/rox-filer_2.5.bb
index 5216d7b..a28ffee 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;





More information about the Openembedded-commits mailing list