Re: [OE-core] how to exclude files when packaging?

2011-11-17 Thread McClintock Matthew-B29882
On Wed, Nov 16, 2011 at 8:29 PM, Ni Qingliang niqingli...@insigma.com.cn wrote: Hello, All: I'm working on opensaf, wrote a bb file for it, and found that the FILES_${PN} has included /usr/lib/${PN}/*. but there are some .a and .so(symlink) in /usr/lib/${PN}, which will result QA

Re: [OE-core] how to exclude files when packaging?

2011-11-17 Thread Martin Jansa
On Thu, Nov 17, 2011 at 08:14:06AM +, McClintock Matthew-B29882 wrote: On Wed, Nov 16, 2011 at 8:29 PM, Ni Qingliang niqingli...@insigma.com.cn wrote: Hello, All: I'm working on opensaf, wrote a bb file for it, and found that the FILES_${PN} has included /usr/lib/${PN}/*. but

Re: [OE-core] how to exclude files when packaging?

2011-11-17 Thread Henning Heinold
On Thu, Nov 17, 2011 at 08:14:06AM +, McClintock Matthew-B29882 wrote: On Wed, Nov 16, 2011 at 8:29 PM, Ni Qingliang niqingli...@insigma.com.cn wrote: Hello, All: I'm working on opensaf, wrote a bb file for it, and found that the FILES_${PN} has included /usr/lib/${PN}/*. but

Re: [OE-core] how to exclude files when packaging?

2011-11-17 Thread Koen Kooi
Op 17 nov. 2011, om 03:29 heeft Ni Qingliang het volgende geschreven: Hello, All: I'm working on opensaf, wrote a bb file for it, and found that the FILES_${PN} has included /usr/lib/${PN}/*. but there are some .a and .so(symlink) in /usr/lib/${PN}, which will result QA issue.

Re: [OE-core] how to exclude files when packaging?

2011-11-17 Thread Ni Qingliang
I still think that the 'exclude feature would be better.:) On Thu, 2011-11-17 at 16:57 +0800, Henning Heinold wrote: On Thu, Nov 17, 2011 at 08:14:06AM +, McClintock Matthew-B29882 wrote: On Wed, Nov 16, 2011 at 8:29 PM, Ni Qingliang niqingli...@insigma.com.cn wrote: Hello, All:

Re: [OE-core] how to exclude files when packaging?

2011-11-17 Thread Ni Qingliang
Oh, my fault. I defined another var: opensaflibmiscdir osaflibsvcdir = ${libdir}/${PN} FILES_${PN} = ${osaflibsvcdir}/lib*.so.* ${osaflibsvcdir}/clc-cli/* \ ${osaflibsvcdir}/immload ${osaflibsvcdir}/nid_tipc \ ${osaflibsvcdir}/osaf* ${osaflibsvcdir}/opensaf* \

Re: [OE-core] how to exclude files when packaging?

2011-11-17 Thread Mark Hatle
On 11/17/11 3:12 AM, Ni Qingliang wrote: I still think that the 'exclude feature would be better.:) IMHO an exclude function would simply be an automated rm -f list at the end of the install process. It should be fairly easy to implement this if someone thinks it's a better idea then

Re: [OE-core] how to exclude files when packaging?

2011-11-17 Thread Chris Larson
On Thu, Nov 17, 2011 at 12:38 PM, Mark Hatle mark.ha...@windriver.com wrote: On 11/17/11 3:12 AM, Ni Qingliang wrote: I still think that the 'exclude feature would be better.:) IMHO an exclude function would simply be an automated rm -f list at the end of the install process. It should be

Re: [OE-core] how to exclude files when packaging?

2011-11-17 Thread Mark Hatle
On 11/17/11 1:43 PM, Chris Larson wrote: On Thu, Nov 17, 2011 at 12:38 PM, Mark Hatlemark.ha...@windriver.com wrote: On 11/17/11 3:12 AM, Ni Qingliang wrote: I still think that the 'exclude feature would be better.:) IMHO an exclude function would simply be an automated rm -flist at the

[OE-core] how to exclude files when packaging?

2011-11-16 Thread Ni Qingliang
Hello, All: I'm working on opensaf, wrote a bb file for it, and found that the FILES_${PN} has included /usr/lib/${PN}/*. but there are some .a and .so(symlink) in /usr/lib/${PN}, which will result QA issue. how to exclude some files (e.g. *.a, *.so) in FILES_${PN}? there