diff options
author | Saul Wold <sgw@linux.intel.com> | 2012-01-18 16:02:22 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-01-19 11:29:06 +0000 |
commit | 0f4f139dd1a6e2c58f26a109b0a94ce01aca272b (patch) | |
tree | 41809f6f35d663b5b82ac2f52ad8b6347b203444 | |
parent | 7aa32f7b841f7fcd77cb0197891bd43ef5b8562a (diff) | |
download | openembedded-core-0f4f139dd1a6e2c58f26a109b0a94ce01aca272b.tar.gz openembedded-core-0f4f139dd1a6e2c58f26a109b0a94ce01aca272b.tar.bz2 openembedded-core-0f4f139dd1a6e2c58f26a109b0a94ce01aca272b.zip |
boost: refactor packages for staticdev
Signed-off-by: Saul Wold <sgw@linux.intel.com>
-rw-r--r-- | meta/recipes-support/boost/boost.inc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/meta/recipes-support/boost/boost.inc b/meta/recipes-support/boost/boost.inc index 74f3e4ba3f..09f61c002e 100644 --- a/meta/recipes-support/boost/boost.inc +++ b/meta/recipes-support/boost/boost.inc @@ -16,7 +16,7 @@ BOOST_VER = "${@"_".join(d.getVar("PV",1).split("."))}" BOOST_MAJ = "${@"_".join(d.getVar("PV",1).split(".")[0:2])}" BOOST_P = "boost_${BOOST_VER}" -INC_PR = "r0" +INC_PR = "r1" SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BOOST_P}.tar.bz2" @@ -68,8 +68,9 @@ FILES_boost-test = "${libdir}/libboost_prg_exec_monitor*.so.* \ ${libdir}/libboost_unit_test_framework*.so.*" # -dev last to pick up the remaining stuff -PACKAGES += "${PN}-dev" -FILES_${PN}-dev = "${includedir} ${libdir}/libboost_*.so ${libdir}/libboost_*.a" +PACKAGES += "${PN}-dev ${PN}-staticdev" +FILES_${PN}-dev = "${includedir} ${libdir}/libboost_*.so" +FILES_${PN}-staticdev = "${libdir}/libboost_*.a" # "boost" is a metapackage which pulls in all boost librabries PACKAGES += "${PN}" |