Re: [OE-core] [PATCH]] python: Unbreak Python third-party extensions

2011-05-03 Thread Michael Lippautz
On Tue, May 03, 2011 at 11:50:50AM +0100, Richard Purdie wrote: > On Fri, 2011-04-29 at 12:44 +0200, Michael Lippautz wrote: > > This fixes compilation/linking of Python 3rd party extensions. > > > > ${STAGING_LIBDIR}/python/config/Makefile needs the correct > > INCDIR and LIBDIR settings to be us

Re: [OE-core] [PATCH]] python: Unbreak Python third-party extensions

2011-05-03 Thread Richard Purdie
On Fri, 2011-04-29 at 12:44 +0200, Michael Lippautz wrote: > This fixes compilation/linking of Python 3rd party extensions. > > ${STAGING_LIBDIR}/python/config/Makefile needs the correct > INCDIR and LIBDIR settings to be used in cross compilation for the > target. 3rd party module use distutils.s

Re: [OE-core] [PATCH]] python: Unbreak Python third-party extensions

2011-05-03 Thread Martin Jansa
On Tue, May 03, 2011 at 10:12:00AM +0200, Michael Lippautz wrote: > On Mon, May 02, 2011 at 09:57:18AM -0700, Kamble, Nitin A wrote: > > Michael, > >This patch is invasive for python recipe but looks fine to me. How much > > testing have you done? We have few python extensions in yocto repo, a

Re: [OE-core] [PATCH]] python: Unbreak Python third-party extensions

2011-05-03 Thread Michael Lippautz
On Mon, May 02, 2011 at 09:57:18AM -0700, Kamble, Nitin A wrote: > Michael, >This patch is invasive for python recipe but looks fine to me. How much > testing have you done? We have few python extensions in yocto repo, and none > of them were hit by this issue. So which python extensions are

Re: [OE-core] [PATCH]] python: Unbreak Python third-party extensions

2011-05-02 Thread Kamble, Nitin A
> > Op 29 apr 2011, om 12:44 heeft Michael Lippautz het volgende > geschreven: > > > >> This fixes compilation/linking of Python 3rd party extensions. > >> > >> ${STAGING_LIBDIR}/python/config/Makefile needs the correct > >> INCDIR and LIBDIR settings to be used in cross compilation for the > >> ta

Re: [OE-core] [PATCH]] python: Unbreak Python third-party extensions

2011-04-29 Thread Michael Lippautz
2011/4/29 Koen Kooi : > > Op 29 apr 2011, om 12:44 heeft Michael Lippautz het volgende geschreven: > >> This fixes compilation/linking of Python 3rd party extensions. >> >> ${STAGING_LIBDIR}/python/config/Makefile needs the correct >> INCDIR and LIBDIR settings to be used in cross compilation for t

Re: [OE-core] [PATCH]] python: Unbreak Python third-party extensions

2011-04-29 Thread Koen Kooi
Op 29 apr 2011, om 12:44 heeft Michael Lippautz het volgende geschreven: > This fixes compilation/linking of Python 3rd party extensions. > > ${STAGING_LIBDIR}/python/config/Makefile needs the correct > INCDIR and LIBDIR settings to be used in cross compilation for the > target. 3rd party module

[OE-core] [PATCH]] python: Unbreak Python third-party extensions

2011-04-29 Thread Michael Lippautz
This fixes compilation/linking of Python 3rd party extensions. ${STAGING_LIBDIR}/python/config/Makefile needs the correct INCDIR and LIBDIR settings to be used in cross compilation for the target. 3rd party module use distutils.sysconfig which uses this Makefile to create compiler/linker flags. W