aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/gpe-icons
diff options
context:
space:
mode:
authorAndreas Oberritter <obi@opendreambox.org>2010-10-26 15:42:54 +0000
committerMichael Smith <msmith@cbnco.com>2010-11-14 18:36:52 -0500
commit359277a9941c0ec1b012778f8e313274142dd6e0 (patch)
tree25abbc98bbdf3ad8495bb3df6a19c28f3c88dbe0 /recipes/gpe-icons
parent602f296587be0cf7e0faf7494a1e6608b3737265 (diff)
downloadopenembedded-359277a9941c0ec1b012778f8e313274142dd6e0.tar.gz
gpe-icons: fix sh equality operator
Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Acked-by: Michael Smith <msmith@cbnco.com>
Diffstat (limited to 'recipes/gpe-icons')
-rw-r--r--recipes/gpe-icons/gpe-icons.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/gpe-icons/gpe-icons.inc b/recipes/gpe-icons/gpe-icons.inc
index f1ce472e89..706e6fb946 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