aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/tzdata
diff options
context:
space:
mode:
authorAndreas Oberritter <obi@opendreambox.org>2010-10-26 15:43:37 +0000
committerMichael Smith <msmith@cbnco.com>2010-11-14 18:36:56 -0500
commitf2d5b4a9171bbaf16c4c49fcbd1e95d4f996c4d0 (patch)
tree01a8a0e09dc18b6de9fe81386ae10013fb5531e1 /recipes/tzdata
parent3913117de6664b663fee1ff6b995b95c35a86026 (diff)
downloadopenembedded-f2d5b4a9171bbaf16c4c49fcbd1e95d4f996c4d0.tar.gz
tzdata: fix sh equality operator
Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Acked-by: Michael Smith <msmith@cbnco.com>
Diffstat (limited to 'recipes/tzdata')
-rw-r--r--recipes/tzdata/tzdata.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/tzdata/tzdata.inc b/recipes/tzdata/tzdata.inc
index 9d7135411f..dd5c2c97df 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