From 4547e5ae122287d7a45e6fb6649424a2a04ba683 Mon Sep 17 00:00:00 2001 From: Phil Blundell Date: Thu, 2 Jun 2011 13:12:24 +0100 Subject: 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 --- meta/classes/libc-package.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta/classes/libc-package.bbclass') 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 } -- cgit v1.2.3-54-g00ecf