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

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


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

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

tzdata: fix sh equality operator

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

---

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

diff --git a/recipes/tzdata/tzdata.inc b/recipes/tzdata/tzdata.inc
index 9d71354..dd5c2c9 100644
--- a/recipes/tzdata/tzdata.inc
+++ b/recipes/tzdata/tzdata.inc
@@ -39,7 +39,7 @@ do_install () {
         install -d ${D}${prefix} ${D}${datadir}/zoneinfo
         cp -pPR ${WORKDIR}/build${prefix}/* ${D}${prefix}
         # Only eglibc is removing zoneinfo files from package
-        if [ "${LIBC}"x == "eglibc"x ] ; then
+        if [ "${LIBC}"x = "eglibc"x ] ; then
           cp -pP "${WORKDIR}/zone.tab" ${D}${datadir}/zoneinfo
           cp -pP "${WORKDIR}/iso3166.tab" ${D}${datadir}/zoneinfo
         fi





More information about the Openembedded-commits mailing list