Re: [OE-core] [PATCH] base.bbclass: fix do_unpack[cleandirs] varflag handling

2018-04-03 Thread Paul Eggleton
On Wednesday, 4 April 2018 10:20:45 AM NZST Richard Purdie wrote: > On Sun, 2018-01-21 at 00:44 +0100, Enrico Jorns wrote: > > As introduced by a56fb90dc3805494eeaf04c60538425e8d52efc5 ('base.bbclass > > wipe ${S} before unpacking source') the base.bbclass uses a python > > anonymous function to

Re: [OE-core] [PATCH] base.bbclass: fix do_unpack[cleandirs] varflag handling

2018-04-03 Thread Richard Purdie
On Sun, 2018-01-21 at 00:44 +0100, Enrico Jorns wrote: > As introduced by a56fb90dc3805494eeaf04c60538425e8d52efc5 ('base.bbclass > wipe ${S} before unpacking source') the base.bbclass uses a python > anonymous function to set the 'do_unpack' varflag 'cleandirs' to either > '${S}' or

Re: [OE-core] [PATCH] base.bbclass: fix do_unpack[cleandirs] varflag handling

2018-01-31 Thread Enrico Joerns
Hey, any comments on that? Not using this patch currently disturbs our companies Yocto kernel workflow. Thus I wonder if no one else have had issues when building kernels from fully custom 'defconfig' files, too. Regards, Enrico On 01/21/2018 12:44 AM, Enrico Jorns wrote: As introduced by

[OE-core] [PATCH] base.bbclass: fix do_unpack[cleandirs] varflag handling

2018-01-20 Thread Enrico Jorns
As introduced by a56fb90dc3805494eeaf04c60538425e8d52efc5 ('base.bbclass wipe ${S} before unpacking source') the base.bbclass uses a python anonymous function to set the 'do_unpack' varflag 'cleandirs' to either '${S}' or '${S}/patches' depending on equality of '${S}' and '${WORKDIR}'. Not that