diff options
author | Saul Wold <sgw@linux.intel.com> | 2012-06-05 05:03:30 -0700 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2012-06-19 21:59:49 -0700 |
commit | cb43d97988475646074c53a264f563bf0cb2907a (patch) | |
tree | cdc05cbda452795666b03353a2440557b7c5219d | |
parent | df651f5c30acb7cccbc0a0abf4b91a07f1a72e1f (diff) | |
download | openembedded-core-contrib-cb43d97988475646074c53a264f563bf0cb2907a.tar.gz |
lib_package: remove the -dev list
Since we have re-order the full PACKAGES list, we do not need to reset
the -dev list, we still need this since the -bin package needs to be inserted.
Signed-off-by: Saul Wold <sgw@linux.intel.com>
-rw-r--r-- | meta/classes/lib_package.bbclass | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/meta/classes/lib_package.bbclass b/meta/classes/lib_package.bbclass index 5ce8727578d..9843ed9f4c2 100644 --- a/meta/classes/lib_package.bbclass +++ b/meta/classes/lib_package.bbclass @@ -1,10 +1,8 @@ -PACKAGES += "${PN}-bin" +PACKAGES =+ "${PN}-bin" FILES_${PN} = "${libexecdir} ${libdir}/lib*${SOLIBS} \ ${sysconfdir} ${sharedstatedir} ${localstatedir} \ ${base_libdir}/*${SOLIBS} \ - ${datadir}/${PN} ${libdir}/${PN}" -FILES_${PN}-dev = "${includedir} ${libdir}/lib*${SOLIBSDEV} ${libdir}/*.la \ - ${libdir}/*.o ${libdir}/pkgconfig /lib/*.o \ - ${datadir}/aclocal ${bindir}/*-config" + ${datadir}/${BPN} ${libdir}/${BPN}" + FILES_${PN}-bin = "${bindir}/* ${sbindir}/* /bin/* /sbin/*" |