aboutsummaryrefslogtreecommitdiffstats
path: root/conf/bitbake.conf
diff options
context:
space:
mode:
authorJeremy Lainé <jeremy.laine@m4x.org>2009-04-20 11:42:08 +0200
committerJeremy Lainé <jeremy.laine@m4x.org>2009-04-20 11:42:08 +0200
commitba434bd1dc9dc8ed61953a1579ea9e993e81cbb2 (patch)
tree8627866adf2b93569859dafeb5e6a2747ec57b54 /conf/bitbake.conf
parent31d5ef7509ca6163f8de840226c84df59ae37b15 (diff)
downloadopenembedded-ba434bd1dc9dc8ed61953a1579ea9e993e81cbb2.tar.gz
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 'conf/bitbake.conf')
-rw-r--r--conf/bitbake.conf7
1 files changed, 6 insertions, 1 deletions
diff --git a/conf/bitbake.conf b/conf/bitbake.conf
index 30ee0ae9bc..41e9c051eb 100644
--- a/conf/bitbake.conf
+++ b/conf/bitbake.conf
@@ -211,9 +211,14 @@ PACKAGES = "${PN}-dbg ${PN} ${PN}-doc ${PN}-dev ${PN}-locale"
PACKAGES_DYNAMIC = "${PN}-locale-*"
FILES = ""
+# 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} = "${bindir}/* ${sbindir}/* ${libexecdir}/* ${libdir}/lib*${SOLIBS} \
${sysconfdir} ${sharedstatedir} ${localstatedir} \
- ${base_bindir}/* ${base_sbindir}/* ${base_libdir}/*${SOLIBS} ${datadir}/${PN} ${libdir}/${PN}/* \
+ ${base_bindir}/* ${base_sbindir}/* \
+ ${base_libdir}/*${SOLIBS} ${base_libdir}/*{SOLIBSDEV} \
+ ${datadir}/${PN} ${libdir}/${PN}/* \
${datadir}/pixmaps ${datadir}/applications \
${datadir}/idl ${datadir}/omf ${datadir}/sounds \
${libdir}/bonobo/servers"