[yocto] [PATCH 2/2] audit: fix pkgconfigdir

2018-04-02 Thread Kai Kang
Because 'libdir' is set with ${base_libdir} in recipe file of audit, package config files(.pc) are installed to ${base_libdir}/pkgconfig that variable pkgconfigdir is set with ${libdir}/pkgconfig in makefile. Set pkgconfigdir directly to install .pc files to right directory. And remove setting

Re: [yocto] [PATCH 2/2] audit: fix pkgconfigdir

2018-04-01 Thread Kang Kai
On 2018年03月28日 15:10, Anuj Mittal wrote: Hi, On 03/28/2018 02:55 PM, Kai Kang wrote: Because 'libdir' is set with ${base_libdir} in recipe file of audit, package config files(.pc) are installed to ${base_libdir}/pkgconfig that variable pkgconfigdir is set with ${libdir}/pkgconfig in makefile.

Re: [yocto] [PATCH 2/2] audit: fix pkgconfigdir

2018-03-28 Thread Anuj Mittal
Hi, On 03/28/2018 02:55 PM, Kai Kang wrote: > Because 'libdir' is set with ${base_libdir} in recipe file of audit, > package config files(.pc) are installed to ${base_libdir}/pkgconfig that > variable pkgconfigdir is set with ${libdir}/pkgconfig in makefile. > > Set pkgconfigdir directly to

[yocto] [PATCH 2/2] audit: fix pkgconfigdir

2018-03-28 Thread Kai Kang
Because 'libdir' is set with ${base_libdir} in recipe file of audit, package config files(.pc) are installed to ${base_libdir}/pkgconfig that variable pkgconfigdir is set with ${libdir}/pkgconfig in makefile. Set pkgconfigdir directly to install .pc files to right directory. Signed-off-by: Kai