From: Phil Blundell Date: Thu, 2 Jun 2011 12:12:24 +0000 (+0100) Subject: libc-package: fix typo causing annoying diagnostic X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4547e5ae122287d7a45e6fb6649424a2a04ba683;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.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. (From OE-Core rev: 5b09d5dbac044277b5f1145057d1fc716ec35b9a) 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 047464e0aae..55e3d485323 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 }