Re: [OE-core] [PATCH 1/1] utils.bbclass: make FILESEXTRAPATHS colon delimited

2011-05-27 Thread Richard Purdie
On Thu, 2011-05-26 at 20:16 -0700, Darren Hart wrote: > > On 05/26/2011 04:46 PM, Richard Purdie wrote: > > On Wed, 2011-05-25 at 16:05 -0700, Darren Hart wrote: > >> Fixes [YOCTO 1102] > >> > >> Path variables are typically : delimited. White space is allowed in paths, > >> so > >> is not a good

Re: [OE-core] [PATCH 1/1] utils.bbclass: make FILESEXTRAPATHS colon delimited

2011-05-27 Thread Phil Blundell
On Thu, 2011-05-26 at 20:16 -0700, Darren Hart wrote: > So by changing from split() to split(":") we change the behavior of > split when operating on empty strings, requiring us to special case the > output. Rather obnoxious wouldn't you say? Yes, that is an annoying misfeature. The other related

Re: [OE-core] [PATCH 1/1] utils.bbclass: make FILESEXTRAPATHS colon delimited

2011-05-26 Thread Darren Hart
On 05/26/2011 04:46 PM, Richard Purdie wrote: > On Wed, 2011-05-25 at 16:05 -0700, Darren Hart wrote: >> Fixes [YOCTO 1102] >> >> Path variables are typically : delimited. White space is allowed in paths, so >> is not a good choice for separating paths. Currently utils.bbclass performs >> the >>

Re: [OE-core] [PATCH 1/1] utils.bbclass: make FILESEXTRAPATHS colon delimited

2011-05-26 Thread Richard Purdie
On Wed, 2011-05-25 at 16:05 -0700, Darren Hart wrote: > Fixes [YOCTO 1102] > > Path variables are typically : delimited. White space is allowed in paths, so > is not a good choice for separating paths. Currently utils.bbclass performs > the > following: > > extrapaths = (bb.data.getVar("FILE

[OE-core] [PATCH 1/1] utils.bbclass: make FILESEXTRAPATHS colon delimited

2011-05-25 Thread Darren Hart
Fixes [YOCTO 1102] Path variables are typically : delimited. White space is allowed in paths, so is not a good choice for separating paths. Currently utils.bbclass performs the following: extrapaths = (bb.data.getVar("FILESEXTRAPATHS", d, True) or "").split() This splits FILESEXTRAPATHS on w