summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSaul Wold <sgw@linux.intel.com>2012-04-20 14:06:20 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-04-26 10:43:39 +0100
commitf246e467b8513f1c1c33b5e7462ae6478754d531 (patch)
treea8f4849751c070024c3d819a37918191e087047e
parent542dc1c8d84682785aade77b16a9fe20a69d7e0a (diff)
downloadopenembedded-core-f246e467b8513f1c1c33b5e7462ae6478754d531.tar.gz
openembedded-core-f246e467b8513f1c1c33b5e7462ae6478754d531.tar.bz2
openembedded-core-f246e467b8513f1c1c33b5e7462ae6478754d531.zip
boost: Ensure we use our user-config.jam file
This change ensures we use the user-config.jam Configuration that we created and will not use anything from the user's home directory. [YOCTO #2302] Signed-off-by: Saul Wold <sgw@linux.intel.com>
-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 c9306df94f..a0fc114968 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 = "r2"
+INC_PR = "r3"
SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BOOST_P}.tar.bz2"
@@ -127,6 +127,7 @@ BJAM_TOOLS = "-sTOOLS=gcc \
"
BJAM_OPTS = '${BJAM_TOOLS} \
+ -sBOOST_BUILD_USER_CONFIG=${S}/tools/build/v2/user-config.jam \
--builddir=${S}/${TARGET_SYS} \
--disable-icu \
${BJAM_EXTRA}'