diff options
author | Jeremy Lainé <jeremy.laine@m4x.org> | 2009-04-20 11:42:08 +0200 |
---|---|---|
committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2009-04-20 11:42:08 +0200 |
commit | ba434bd1dc9dc8ed61953a1579ea9e993e81cbb2 (patch) | |
tree | 8627866adf2b93569859dafeb5e6a2747ec57b54 /classes | |
parent | 31d5ef7509ca6163f8de840226c84df59ae37b15 (diff) |
bitbake.conf, lib_package.bbclass: fix packaging of ${base_libdir}/*.so
We need to include ${base_libdir}/*${SOLIBSDEV} in FILES_${PN]} because
the shared libraries in ${base_libdir} do not follow the usual *.so.* naming
convention, for instance libproc-3.2.7.so.
Diffstat (limited to 'classes')
-rw-r--r-- | classes/lib_package.bbclass | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/classes/lib_package.bbclass b/classes/lib_package.bbclass index 03ba9d094f..f866d10951 100644 --- a/classes/lib_package.bbclass +++ b/classes/lib_package.bbclass @@ -1,8 +1,12 @@ PACKAGES += "${PN}-bin" +# NB: ${base_libdir}/*${SOLIBSDEV} is included here because the shared libraries +# in ${base_libdir} do not follow the usual *.so.* naming convention, for instance +# libproc-3.2.7.so FILES_${PN} = "${libexecdir} ${libdir}/lib*${SOLIBS} \ ${sysconfdir} ${sharedstatedir} ${localstatedir} \ - ${base_libdir}/*${SOLIBS} ${datadir}/${PN} ${libdir}/${PN}" + ${base_libdir}/*${SOLIBS} ${base_libdir}/*{SOLIBSDEV} \ + ${datadir}/${PN} ${libdir}/${PN}" FILES_${PN}-dev = "${includedir} ${libdir}/lib*${SOLIBSDEV} ${libdir}/*.la \ ${libdir}/*.a ${libdir}/pkgconfig /lib/*.a /lib/*.o \ ${datadir}/aclocal ${bindir}/*-config" |