diff options
author | Andre McCurdy <armccurdy@gmail.com> | 2016-02-25 11:59:15 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-28 11:33:06 +0000 |
commit | 083c63dddf8715bc1ee18fce37f7e8c3132f49cf (patch) | |
tree | f63574f6050815d3f3dfeebe25a704283b8d01c1 /meta/recipes-support | |
parent | f4e17c6619ba0f1ab7861583fe2d65394b3ea985 (diff) | |
download | poky-083c63dddf8715bc1ee18fce37f7e8c3132f49cf.tar.gz |
boost.inc: fix BJAM_OPTS --build-dir option
The correct syntax is --build-dir ( --builddir is silently ignored ).
(From OE-Core rev: 0a8e78b67254ab1a0348cd47c4d96907af558de1)
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Ross Burton <ross.burton@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.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-support/boost/boost.inc b/meta/recipes-support/boost/boost.inc index c55221ff1b..982446c068 100644 --- a/meta/recipes-support/boost/boost.inc +++ b/meta/recipes-support/boost/boost.inc | |||
@@ -143,7 +143,7 @@ BOOST_PARALLEL_MAKE = "${@get_boost_parallel_make(d)}" | |||
143 | BJAM_OPTS = '${BOOST_PARALLEL_MAKE} -d+2 -q \ | 143 | BJAM_OPTS = '${BOOST_PARALLEL_MAKE} -d+2 -q \ |
144 | ${BJAM_TOOLS} \ | 144 | ${BJAM_TOOLS} \ |
145 | -sBOOST_BUILD_USER_CONFIG=${S}/tools/build/example/user-config.jam \ | 145 | -sBOOST_BUILD_USER_CONFIG=${S}/tools/build/example/user-config.jam \ |
146 | --builddir=${S}/${TARGET_SYS} \ | 146 | --build-dir=${S}/${TARGET_SYS} \ |
147 | --disable-icu \ | 147 | --disable-icu \ |
148 | ${BJAM_EXTRA}' | 148 | ${BJAM_EXTRA}' |
149 | 149 | ||