Re: [OE-core] why would a recipe have both do_install() and do_install_append()?

2012-07-05 Thread Robert P. J. Day
On Wed, 4 Jul 2012, Khem Raj wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 7/4/2012 4:29 AM, Richard Purdie wrote: AFAICT, you can't override an append. Both appends, the original and the bbappended, would get executed. ok, now i *definitely* want to know whether this would

Re: [OE-core] why would a recipe have both do_install() and do_install_append()?

2012-07-05 Thread Scott Garman
On 07/05/2012 03:14 AM, Robert P. J. Day wrote: On Wed, 4 Jul 2012, Khem Raj wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 7/4/2012 4:29 AM, Richard Purdie wrote: AFAICT, you can't override an append. Both appends, the original and the bbappended, would get executed. ok, now i

Re: [OE-core] why would a recipe have both do_install() and do_install_append()?

2012-07-04 Thread Khem Raj
On Tue, Jul 3, 2012 at 7:22 PM, Robert P. J. Day rpj...@crashcourse.ca wrote: i'm probably just misreading something, but what is the point of a recipe having both a do_install() and do_install_append() function? for example, here's part of e2fsprogs_1.42.1.bb: do_install () {

Re: [OE-core] why would a recipe have both do_install() and do_install_append()?

2012-07-04 Thread Andreas Oberritter
On 04.07.2012 08:32, Khem Raj wrote: On Tue, Jul 3, 2012 at 7:22 PM, Robert P. J. Day rpj...@crashcourse.ca wrote: i'm probably just misreading something, but what is the point of a recipe having both a do_install() and do_install_append() function? for example, here's part of

Re: [OE-core] why would a recipe have both do_install() and do_install_append()?

2012-07-04 Thread Robert P. J. Day
On Wed, 4 Jul 2012, Andreas Oberritter wrote: On 04.07.2012 08:32, Khem Raj wrote: On Tue, Jul 3, 2012 at 7:22 PM, Robert P. J. Day rpj...@crashcourse.ca wrote: i'm probably just misreading something, but what is the point of a recipe having both a do_install() and

Re: [OE-core] why would a recipe have both do_install() and do_install_append()?

2012-07-04 Thread Richard Purdie
On Wed, 2012-07-04 at 06:16 -0400, Robert P. J. Day wrote: On Wed, 4 Jul 2012, Andreas Oberritter wrote: On 04.07.2012 08:32, Khem Raj wrote: On Tue, Jul 3, 2012 at 7:22 PM, Robert P. J. Day rpj...@crashcourse.ca wrote: i'm probably just misreading something, but what is the

Re: [OE-core] why would a recipe have both do_install() and do_install_append()?

2012-07-04 Thread Khem Raj
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 7/4/2012 4:29 AM, Richard Purdie wrote: AFAICT, you can't override an append. Both appends, the original and the bbappended, would get executed. ok, now i *definitely* want to know whether this would work or not since there are a few recipes

[OE-core] why would a recipe have both do_install() and do_install_append()?

2012-07-03 Thread Robert P. J. Day
i'm probably just misreading something, but what is the point of a recipe having both a do_install() and do_install_append() function? for example, here's part of e2fsprogs_1.42.1.bb: do_install () { oe_runmake 'DESTDIR=${D}' install oe_runmake 'DESTDIR=${D}' install-libs