summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support
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-05-31 21:15:11 +0100
commit75225bcc845cd860dfc253cad2af7e9868f60e5d (patch)
tree3c38679a9b882b952caddb082da8ab8120c2044b /meta/recipes-support
parentd3204ddc12399cb068de77d7805713109d05e6bd (diff)
downloadpoky-75225bcc845cd860dfc253cad2af7e9868f60e5d.tar.gz
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] (From OE-Core rev: f246e467b8513f1c1c33b5e7462ae6478754d531) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support')
-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("."))}"
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 = "r2" 19INC_PR = "r3"
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 \
127 " 127 "
128 128
129BJAM_OPTS = '${BJAM_TOOLS} \ 129BJAM_OPTS = '${BJAM_TOOLS} \
130 -sBOOST_BUILD_USER_CONFIG=${S}/tools/build/v2/user-config.jam \
130 --builddir=${S}/${TARGET_SYS} \ 131 --builddir=${S}/${TARGET_SYS} \
131 --disable-icu \ 132 --disable-icu \
132 ${BJAM_EXTRA}' 133 ${BJAM_EXTRA}'