From f2d5b4a9171bbaf16c4c49fcbd1e95d4f996c4d0 Mon Sep 17 00:00:00 2001 From: Andreas Oberritter Date: Tue, 26 Oct 2010 15:43:37 +0000 Subject: tzdata: fix sh equality operator Signed-off-by: Andreas Oberritter Acked-by: Michael Smith --- recipes/tzdata/tzdata.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'recipes') 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 -- cgit 1.2.3-korg