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:32:40 +0000 |
commit | 0a8e78b67254ab1a0348cd47c4d96907af558de1 (patch) | |
tree | c053acec700440bd2abbb81f615fb311a3fae422 | |
parent | 6e5976d302f5bc4cdfcbf40458d2a5fa7cd4a321 (diff) | |
download | openembedded-core-0a8e78b67254ab1a0348cd47c4d96907af558de1.tar.gz openembedded-core-0a8e78b67254ab1a0348cd47c4d96907af558de1.tar.bz2 openembedded-core-0a8e78b67254ab1a0348cd47c4d96907af558de1.zip |
boost.inc: fix BJAM_OPTS --build-dir option
The correct syntax is --build-dir ( --builddir is silently ignored ).
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-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)}" BJAM_OPTS = '${BOOST_PARALLEL_MAKE} -d+2 -q \ ${BJAM_TOOLS} \ -sBOOST_BUILD_USER_CONFIG=${S}/tools/build/example/user-config.jam \ - --builddir=${S}/${TARGET_SYS} \ + --build-dir=${S}/${TARGET_SYS} \ --disable-icu \ ${BJAM_EXTRA}' |