summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/boost
diff options
context:
space:
mode:
authorPhilip Balister <philip@balister.org>2011-12-12 16:58:36 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-12-13 12:28:13 +0000
commitbade85eb0d840374e9b9ad98d63744446394d925 (patch)
tree4f925f0314ec46ff908d99ccfbf61ebcf3cab28e /meta/recipes-support/boost
parent3994ad0c34b773b4887f1e6396ef86218a0e5c60 (diff)
downloadpoky-bade85eb0d840374e9b9ad98d63744446394d925.tar.gz
boost : Do not use icu when building boost.
Without this, boost needs to build icu to create images using boost regex. RP inidicated he would rather disable icu, than add an extra dependency to the recipe. (From OE-Core rev: f60417055f869acb871be1f01c6900fdf685d71a) Signed-off-by: Philip Balister <philip@balister.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/boost')
-rw-r--r--meta/recipes-support/boost/boost.inc3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-support/boost/boost.inc b/meta/recipes-support/boost/boost.inc
index cc26ef9e9b..aa577b3f0f 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("."))}"
16BOOST_MAJ = "${@"_".join(d.getVar("PV",1).split(".")[0:2])}" 16BOOST_MAJ = "${@"_".join(d.getVar("PV",1).split(".")[0:2])}"
17BOOST_P = "boost_${BOOST_VER}" 17BOOST_P = "boost_${BOOST_VER}"
18 18
19INC_PR = "r1" 19INC_PR = "r2"
20 20
21SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BOOST_P}.tar.bz2" 21SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BOOST_P}.tar.bz2"
22 22
@@ -127,6 +127,7 @@ BJAM_TOOLS = "-sTOOLS=gcc \
127BJAM_OPTS = '${BJAM_TOOLS} \ 127BJAM_OPTS = '${BJAM_TOOLS} \
128 --builddir=${S}/${TARGET_SYS} \ 128 --builddir=${S}/${TARGET_SYS} \
129 --with-python-root=${PYTHON_ROOT} \ 129 --with-python-root=${PYTHON_ROOT} \
130 --without-icu \
130 ${BJAM_EXTRA}' 131 ${BJAM_EXTRA}'
131 132
132 133