diff options
author | Phil Blundell <pb@pbcl.net> | 2011-06-02 13:12:24 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-06-02 16:05:57 +0100 |
commit | 4547e5ae122287d7a45e6fb6649424a2a04ba683 (patch) | |
tree | 0c61e54da913caa21448639903d7016614dbf57c /meta/classes/libc-package.bbclass | |
parent | ca7fd1485b80667e078ae77f9a9ac294ca978524 (diff) | |
download | poky-4547e5ae122287d7a45e6fb6649424a2a04ba683.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.
(From OE-Core rev: 5b09d5dbac044277b5f1145057d1fc716ec35b9a)
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.bbclass | 2 |
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() { | |||
98 | grep -v $i ${WORKDIR}/SUPPORTED > ${WORKDIR}/SUPPORTED.tmp | 98 | grep -v $i ${WORKDIR}/SUPPORTED > ${WORKDIR}/SUPPORTED.tmp |
99 | mv ${WORKDIR}/SUPPORTED.tmp ${WORKDIR}/SUPPORTED | 99 | mv ${WORKDIR}/SUPPORTED.tmp ${WORKDIR}/SUPPORTED |
100 | done | 100 | done |
101 | rm -f ${D}{sysconfdir}/rpc | 101 | rm -f ${D}${sysconfdir}/rpc |
102 | rm -rf ${D}${datadir}/zoneinfo | 102 | rm -rf ${D}${datadir}/zoneinfo |
103 | rm -rf ${D}${libexecdir}/getconf | 103 | rm -rf ${D}${libexecdir}/getconf |
104 | } | 104 | } |