I am trying to install PJSIP on Yocto but I have some problems...
This is my recipe.
And the problems I have are :
- Sometimes Yocto seems to compile without taking note of my layer and sometimes yes...
I do have added my layer in the bblayers file because sometimes the changes I do in my recipe are in my image but most of the time not... For installing the python library of PJSIP we have to do
make
orpython setup.py install
in thepjsip-apps/src/python/
folder. Why this in the recip:cd ${S}/pjsip-apps/src/python oe_runmake
It's not working? (I say so because if I do
python --> import pjsua
on the target it's not working) How can I install it without doing it by hand after :cp -r ${S}/pjsip-apps/src/python/* ${D}/usr/pjsip-python --no-preserve=ownership
in the recip ?
Thank you for your help !