Re: [PATCH 1/2] localmodconfig: Fix parsing of Kconfig "source" statements

2016-04-26 Thread Steven Rostedt
On Fri, 8 Apr 2016 22:59:02 +0800 joeyli wrote: > On Sat, Apr 02, 2016 at 10:55:21AM -0700, Benjamin Poirier wrote: > > The parameter of Kconfig "source" statements does not need to be quoted. > > The current regex causes many kconfig files to be skipped and hence, > > dependencies to be missed.

Re: [PATCH 1/2] localmodconfig: Fix parsing of Kconfig "source" statements

2016-04-18 Thread Benjamin Poirier
On 2016/04/18 17:43, Steven Rostedt wrote: [...] > > Hi Steven, > > > > Can you please merge these six patches (2 original + 4 followups)? > > > > OK, I've marked them as todo. I've just come back from two weeks of > conferences and I'm working on catching up. > Ah I see, thanks. I just wanted

Re: [PATCH 1/2] localmodconfig: Fix parsing of Kconfig "source" statements

2016-04-18 Thread Steven Rostedt
On Mon, 18 Apr 2016 13:29:12 -0700 Benjamin Poirier wrote: > On 2016/04/10 16:52, Benjamin Poirier wrote: > > On 2016/04/08 14:29, Steven Rostedt wrote: > > > On Sat, 2 Apr 2016 10:55:21 -0700 > > > Benjamin Poirier wrote: > > > > > > > The parameter of Kconfig "source" statements does not

Re: [PATCH 1/2] localmodconfig: Fix parsing of Kconfig "source" statements

2016-04-18 Thread Benjamin Poirier
On 2016/04/10 16:52, Benjamin Poirier wrote: > On 2016/04/08 14:29, Steven Rostedt wrote: > > On Sat, 2 Apr 2016 10:55:21 -0700 > > Benjamin Poirier wrote: > > > > > The parameter of Kconfig "source" statements does not need to be quoted. > > > The current regex causes many kconfig files to be s

Re: [PATCH 1/2] localmodconfig: Fix parsing of Kconfig "source" statements

2016-04-10 Thread Benjamin Poirier
On 2016/04/08 14:29, Steven Rostedt wrote: > On Sat, 2 Apr 2016 10:55:21 -0700 > Benjamin Poirier wrote: > > > The parameter of Kconfig "source" statements does not need to be quoted. > > The current regex causes many kconfig files to be skipped and hence, > > dependencies to be missed. > > > >

Re: [PATCH 1/2] localmodconfig: Fix parsing of Kconfig "source" statements

2016-04-08 Thread Steven Rostedt
On Sat, 2 Apr 2016 10:55:21 -0700 Benjamin Poirier wrote: > The parameter of Kconfig "source" statements does not need to be quoted. > The current regex causes many kconfig files to be skipped and hence, > dependencies to be missed. > > Also fix the whitespace repeat count. > > Signed-off-by:

Re: [PATCH 1/2] localmodconfig: Fix parsing of Kconfig "source" statements

2016-04-08 Thread joeyli
On Sat, Apr 02, 2016 at 10:55:21AM -0700, Benjamin Poirier wrote: > The parameter of Kconfig "source" statements does not need to be quoted. > The current regex causes many kconfig files to be skipped and hence, > dependencies to be missed. > > Also fix the whitespace repeat count. > > Signed-off