From: Phil Blundell Date: Thu, 2 Jun 2011 12:12:24 +0000 (+0100) Subject: libc-package: fix typo causing annoying diagnostic X-Git-Tag: 2011-1~1214 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=5b09d5dbac044277b5f1145057d1fc716ec35b9a;p=openembedded-core.git libc-package: fix typo causing annoying diagnostic We don't package /etc/rpc and do_install() makes some effort to remove that file so as to avoid the "installed but not shipped" diagnostic. But, due to a typo in the command line, the file wasn't actually being removed and the diagnostic continued to be issued. Signed-off-by: Phil Blundell Signed-off-by: Richard Purdie --- diff --git a/meta/classes/libc-package.bbclass b/meta/classes/libc-package.bbclass index 047464e0aa..55e3d48532 100644 --- a/meta/classes/libc-package.bbclass +++ b/meta/classes/libc-package.bbclass @@ -98,7 +98,7 @@ do_install() { grep -v $i ${WORKDIR}/SUPPORTED > ${WORKDIR}/SUPPORTED.tmp mv ${WORKDIR}/SUPPORTED.tmp ${WORKDIR}/SUPPORTED done - rm -f ${D}{sysconfdir}/rpc + rm -f ${D}${sysconfdir}/rpc rm -rf ${D}${datadir}/zoneinfo rm -rf ${D}${libexecdir}/getconf }