From: Andreas Oberritter Date: Tue, 26 Oct 2010 15:43:37 +0000 (+0000) Subject: tzdata: fix sh equality operator X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f2d5b4a9171bbaf16c4c49fcbd1e95d4f996c4d0;p=openembedded.git tzdata: fix sh equality operator Signed-off-by: Andreas Oberritter Acked-by: Michael Smith --- 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