diff options
author | Saul Wold <sgw@linux.intel.com> | 2012-06-06 01:16:39 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-06-21 13:02:56 +0100 |
commit | fd259b8894880da2dd4c5bb68386e13b2323cc8e (patch) | |
tree | d20529de5f46eb4c06eb54f7bd82c34bce4e1556 /meta/classes | |
parent | b11e5d77bcfd6e916141f941fba10644bff5a110 (diff) | |
download | poky-fd259b8894880da2dd4c5bb68386e13b2323cc8e.tar.gz |
bitbake.conf: add PN-bin and cleanup lib_package.bbclass
Since we now have PN as the end of the package list, we can almost get rid of
lib_package, each recipe can just add PACKAGES =+ PN-bin instead of the inherit
(From OE-Core rev: 7acdd6177fda4643d2f04f45eb7490e45a3d491e)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/lib_package.bbclass | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/meta/classes/lib_package.bbclass b/meta/classes/lib_package.bbclass index 9843ed9f4c..1f0542a4ca 100644 --- a/meta/classes/lib_package.bbclass +++ b/meta/classes/lib_package.bbclass | |||
@@ -1,8 +1,8 @@ | |||
1 | PACKAGES =+ "${PN}-bin" | 1 | # |
2 | # ${PN}-bin is defined in bitbake.conf | ||
3 | # | ||
4 | # We need to allow the other packages to be greedy with what they | ||
5 | # want out of /bin and /usr/bin before ${PN}-bin gets greedy. | ||
6 | # | ||
7 | PACKAGES = "${PN}-dbg ${PN}-staticdev ${PN}-dev ${PN}-doc ${PN}-locale ${PN}-bin ${PN}" | ||
2 | 8 | ||
3 | FILES_${PN} = "${libexecdir} ${libdir}/lib*${SOLIBS} \ | ||
4 | ${sysconfdir} ${sharedstatedir} ${localstatedir} \ | ||
5 | ${base_libdir}/*${SOLIBS} \ | ||
6 | ${datadir}/${BPN} ${libdir}/${BPN}" | ||
7 | |||
8 | FILES_${PN}-bin = "${bindir}/* ${sbindir}/* /bin/* /sbin/*" | ||