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

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


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

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

gpe-icons: fix sh equality operator

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

---

 recipes/gpe-icons/gpe-icons.inc |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/recipes/gpe-icons/gpe-icons.inc b/recipes/gpe-icons/gpe-icons.inc
index f1ce472..706e6fb 100644
--- a/recipes/gpe-icons/gpe-icons.inc
+++ b/recipes/gpe-icons/gpe-icons.inc
@@ -30,7 +30,7 @@ pkg_postinst_shr() {
         pixmap_dirs_root="${datadir}/gpe/"
         cd ${pixmap_dirs_root}
         for pixmap_dir in pixmaps.*; do
-                if [ "${pixmap_dir}"x == "pixmaps.${PN}"x ] ; then
+                if [ "${pixmap_dir}"x = "pixmaps.${PN}"x ] ; then
                           continue;
                 fi
                 for pixmap in `find ${pixmap_dir}`; do





More information about the Openembedded-commits mailing list