[oe-commits] Andreas Oberritter : sourceipk.bbclass: fix sh equality operator

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


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

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

sourceipk.bbclass: fix sh equality operator

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

---

 classes/sourceipk.bbclass |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/classes/sourceipk.bbclass b/classes/sourceipk.bbclass
index 09fc5d5..97068de 100644
--- a/classes/sourceipk.bbclass
+++ b/classes/sourceipk.bbclass
@@ -92,7 +92,7 @@ sourceipk_do_create_srcipk() {
         echo "License: ${LICENSE}" >> $control_file
         echo "Architecture: ${SRCIPK_PACKAGE_ARCH}" >> $control_file
         srcuri="${SRC_URI}"
-        if [ "$srcuri" == "" ]
+        if [ "$srcuri" = "" ]
         then
             srcuri="OpenEmbedded"
         fi





More information about the Openembedded-commits mailing list