aboutsummaryrefslogtreecommitdiffstats
path: root/meta/classes/libc-package.bbclass
diff options
context:
space:
mode:
authorPhil Blundell <pb@pbcl.net>2011-06-02 13:12:24 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-06-02 16:05:44 +0100
commit5b09d5dbac044277b5f1145057d1fc716ec35b9a (patch)
treed4913d6cb8f4747e6c10b37cdd1e78de78b78654 /meta/classes/libc-package.bbclass
parentb41a9d1b536ffef5f86dac40f34b44db463a1038 (diff)
downloadopenembedded-core-5b09d5dbac044277b5f1145057d1fc716ec35b9a.tar.gz
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 <philb@gnu.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/libc-package.bbclass')
-rw-r--r--meta/classes/libc-package.bbclass2
1 files changed, 1 insertions, 1 deletions
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
}