* [PATCH] libc-package: fix typo causing annoying diagnostic
@ 2011-06-02 12:12 Phil Blundell
2011-06-03 0:39 ` Saul Wold
0 siblings, 1 reply; 2+ messages in thread
From: Phil Blundell @ 2011-06-02 12:12 UTC (permalink / raw)
To: openembedded-core
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>
---
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 047464e..55e3d48 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
}
--
1.7.2.5
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH] libc-package: fix typo causing annoying diagnostic
2011-06-02 12:12 [PATCH] libc-package: fix typo causing annoying diagnostic Phil Blundell
@ 2011-06-03 0:39 ` Saul Wold
0 siblings, 0 replies; 2+ messages in thread
From: Saul Wold @ 2011-06-03 0:39 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On 06/02/2011 05:12 AM, Phil Blundell wrote:
> 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>
> ---
> 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 047464e..55e3d48 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
> }
Merged into oe-core
Thanks
Sau!
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-06-03 0:42 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-02 12:12 [PATCH] libc-package: fix typo causing annoying diagnostic Phil Blundell
2011-06-03 0:39 ` Saul Wold
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox