* [PATCH] [meta-fsl-ppc] flib:Fix flib not found in the base feeds error
@ 2013-07-04 9:42 b40527
2013-07-04 21:33 ` Otavio Salvador
0 siblings, 1 reply; 5+ messages in thread
From: b40527 @ 2013-07-04 9:42 UTC (permalink / raw)
To: meta-freescale; +Cc: Zongchun Yu
From: Zongchun Yu <Zongchun.Yu@freescale.com>
To avoid error caused by empty package when build flib into rootfs.
add ALLOW_EMPTY
Signed-off-by: Zongchun Yu <Zongchun.Yu@freescale.com>
---
recipes-tools/flib/flib_git.bb | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/recipes-tools/flib/flib_git.bb b/recipes-tools/flib/flib_git.bb
index 590f724..fb3f698 100644
--- a/recipes-tools/flib/flib_git.bb
+++ b/recipes-tools/flib/flib_git.bb
@@ -11,3 +11,5 @@ S = "${WORKDIR}/git"
do_install(){
oe_runmake install DESTDIR=${D}
}
+
+ALLOW_EMPTY_${PN} = "1"
--
1.7.0.4
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [PATCH] [meta-fsl-ppc] flib:Fix flib not found in the base feeds error
2013-07-04 9:42 [PATCH] [meta-fsl-ppc] flib:Fix flib not found in the base feeds error b40527
@ 2013-07-04 21:33 ` Otavio Salvador
2013-07-05 2:06 ` Zongchun YU
0 siblings, 1 reply; 5+ messages in thread
From: Otavio Salvador @ 2013-07-04 21:33 UTC (permalink / raw)
To: Yu Zongchun-B40527; +Cc: meta-freescale@yoctoproject.org, Zongchun Yu
On Thu, Jul 4, 2013 at 6:42 AM, <b40527@freescale.com> wrote:
> From: Zongchun Yu <Zongchun.Yu@freescale.com>
>
> To avoid error caused by empty package when build flib into rootfs.
> add ALLOW_EMPTY
>
> Signed-off-by: Zongchun Yu <Zongchun.Yu@freescale.com>
Why PN gets empty?
--
Otavio Salvador O.S. Systems
http://www.ossystems.com.br http://projetos.ossystems.com.br
Mobile: +55 (53) 9981-7854 Mobile: +1 (347) 903-9750
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] [meta-fsl-ppc] flib:Fix flib not found in the base feeds error
2013-07-04 21:33 ` Otavio Salvador
@ 2013-07-05 2:06 ` Zongchun YU
2013-07-05 12:19 ` Otavio Salvador
0 siblings, 1 reply; 5+ messages in thread
From: Zongchun YU @ 2013-07-05 2:06 UTC (permalink / raw)
To: 'Otavio Salvador'; +Cc: meta-freescale, 'Zongchun Yu'
>Why PN gets empty?
Flib only install headers, all the headers are included in ${PN}-dev instead
of ${PN},
So the PN gets empty.
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [PATCH] [meta-fsl-ppc] flib:Fix flib not found in the base feeds error
2013-07-05 2:06 ` Zongchun YU
@ 2013-07-05 12:19 ` Otavio Salvador
2013-07-08 1:55 ` Luo Zhenhua-B19537
0 siblings, 1 reply; 5+ messages in thread
From: Otavio Salvador @ 2013-07-05 12:19 UTC (permalink / raw)
To: Zongchun YU; +Cc: meta-freescale@yoctoproject.org, Zongchun Yu
On Thu, Jul 4, 2013 at 11:06 PM, Zongchun YU <b40527@freescale.com> wrote:
>>Why PN gets empty?
> Flib only install headers, all the headers are included in ${PN}-dev instead
> of ${PN},
> So the PN gets empty.
Agreed; so I am fine with the patch.
--
Otavio Salvador O.S. Systems
http://www.ossystems.com.br http://projetos.ossystems.com.br
Mobile: +55 (53) 9981-7854 Mobile: +1 (347) 903-9750
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [PATCH] [meta-fsl-ppc] flib:Fix flib not found in the base feeds error
2013-07-05 12:19 ` Otavio Salvador
@ 2013-07-08 1:55 ` Luo Zhenhua-B19537
0 siblings, 0 replies; 5+ messages in thread
From: Luo Zhenhua-B19537 @ 2013-07-08 1:55 UTC (permalink / raw)
To: Yu Zongchun-B40527; +Cc: meta-freescale@yoctoproject.org
Applied, thanks.
Best Regards,
Zhenhua
> -----Original Message-----
> From: meta-freescale-bounces@yoctoproject.org [mailto:meta-freescale-
> bounces@yoctoproject.org] On Behalf Of Otavio Salvador
> Sent: Friday, July 05, 2013 8:19 PM
> To: Yu Zongchun-B40527
> Cc: meta-freescale@yoctoproject.org; Yu Zongchun-B40527
> Subject: Re: [meta-freescale] [PATCH] [meta-fsl-ppc] flib:Fix flib not
> found in the base feeds error
>
> On Thu, Jul 4, 2013 at 11:06 PM, Zongchun YU <b40527@freescale.com> wrote:
> >>Why PN gets empty?
> > Flib only install headers, all the headers are included in ${PN}-dev
> > instead of ${PN}, So the PN gets empty.
>
> Agreed; so I am fine with the patch.
>
> --
> Otavio Salvador O.S. Systems
> http://www.ossystems.com.br http://projetos.ossystems.com.br
> Mobile: +55 (53) 9981-7854 Mobile: +1 (347) 903-9750
> _______________________________________________
> meta-freescale mailing list
> meta-freescale@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-freescale
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2013-07-08 1:53 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-04 9:42 [PATCH] [meta-fsl-ppc] flib:Fix flib not found in the base feeds error b40527
2013-07-04 21:33 ` Otavio Salvador
2013-07-05 2:06 ` Zongchun YU
2013-07-05 12:19 ` Otavio Salvador
2013-07-08 1:55 ` Luo Zhenhua-B19537
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.