Re: [OE-core] [PATCH 1/3] distutils-common-base.bbclass: Prepend STAGING_LIBDIR to linker library search path.

2011-04-27 Thread Michael Lippautz
[usually not answering myself, but:] The culprit is: * distutils.bbclass tries to make python recognize staged libs by setting STAGING_LIBDIR (correct) * distutils recognizes STAGING_LIBDIR and tries to load pythonpyver/config/Makefile (correct?) * since this contains the Makefile that is

Re: [OE-core] [PATCH 1/3] distutils-common-base.bbclass: Prepend STAGING_LIBDIR to linker library search path.

2011-04-18 Thread Richard Purdie
On Mon, 2011-04-18 at 07:54 +0200, Martin Jansa wrote: On Thu, Mar 31, 2011 at 03:26:39PM +0100, Richard Purdie wrote: On Thu, 2011-03-31 at 12:40 +0200, Martin Jansa wrote: * This was done generically in bitbake.conf this should be done on demand and distutils based recipes seem to

Re: [OE-core] [PATCH 1/3] distutils-common-base.bbclass: Prepend STAGING_LIBDIR to linker library search path.

2011-04-17 Thread Martin Jansa
On Thu, Mar 31, 2011 at 03:26:39PM +0100, Richard Purdie wrote: On Thu, 2011-03-31 at 12:40 +0200, Martin Jansa wrote: * This was done generically in bitbake.conf this should be done on demand and distutils based recipes seem to need it. So we define it here. * imported from OE