From 359277a9941c0ec1b012778f8e313274142dd6e0 Mon Sep 17 00:00:00 2001 From: Andreas Oberritter Date: Tue, 26 Oct 2010 15:42:54 +0000 Subject: [PATCH] gpe-icons: fix sh equality operator Signed-off-by: Andreas Oberritter Acked-by: Michael Smith --- recipes/gpe-icons/gpe-icons.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5