lib_package: remove the -dev list
authorSaul Wold <sgw@linux.intel.com>
Tue, 5 Jun 2012 12:03:30 +0000 (05:03 -0700)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 21 Jun 2012 12:02:56 +0000 (13:02 +0100)
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.

(From OE-Core rev: cb43d97988475646074c53a264f563bf0cb2907a)

Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/lib_package.bbclass

index 5ce8727..9843ed9 100644 (file)
@@ -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/*"