Re: [yocto] Adding Python support to build

2013-07-19 Thread Rich Bayliss
On 19 Jul 2013 13:54, "Maxin B. John" wrote: > > Hi, > > > I have added a recipe to my build which RDEPENDS_${PN} = "python". > > Although the package doesn't "need" python to run, it exposes a Python > > library which I would like to use on the system in a Python script. > RDEPENDS on "python-mat

Re: [yocto] Adding Python support to build

2013-07-19 Thread Maxin B. John
Hi, > I have added a recipe to my build which RDEPENDS_${PN} = "python". > Although the package doesn't "need" python to run, it exposes a Python > library which I would like to use on the system in a Python script. RDEPENDS on "python-math" should do the trick. RDEPENDS_${PN} = "python-math"

[yocto] Adding Python support to build

2013-07-19 Thread Rich Bayliss
I have added a recipe to my build which RDEPENDS_${PN} = "python". Although the package doesn't "need" python to run, it exposes a Python library which I would like to use on the system in a Python script. When I build my image, which has IMAGE_INSTALL += "my-package" in its recipe, I have got Pyt