Re: [OE-core] [PATCH] dnsmasq: fix parallel make failure

2014-08-04 Thread Shrikant Bobade
Thanks Richard, Pushing it to oe-devel list.. Thanks Shrikant On Mon, Aug 4, 2014 at 2:24 PM, Richard Purdie < richard.pur...@linuxfoundation.org> wrote: > On Fri, 2014-08-01 at 19:16 +0530, Shrikant Bobade wrote: > > From: Shrikant Bobade > > > > The dnsmasq target depends on .configured and

Re: [OE-core] [PATCH] dnsmasq: fix parallel make failure

2014-08-04 Thread Richard Purdie
On Fri, 2014-08-01 at 19:16 +0530, Shrikant Bobade wrote: > From: Shrikant Bobade > > The dnsmasq target depends on .configured and $(objs). .configured does an rm > -f *.o. Yet the only thing telling make to build the .configured target before > the $(objs) target was the order of the dependenci

[OE-core] [PATCH] dnsmasq: fix parallel make failure

2014-08-01 Thread Shrikant Bobade
From: Shrikant Bobade The dnsmasq target depends on .configured and $(objs). .configured does an rm -f *.o. Yet the only thing telling make to build the .configured target before the $(objs) target was the order of the dependencies of the dnsmasq target. We can't rely on that order when doing a p