From: Andre McCurdy Date: Thu, 25 Feb 2016 19:59:15 +0000 (-0800) Subject: boost.inc: fix BJAM_OPTS --build-dir option X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~26762 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0a8e78b67254ab1a0348cd47c4d96907af558de1;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git boost.inc: fix BJAM_OPTS --build-dir option The correct syntax is --build-dir ( --builddir is silently ignored ). Signed-off-by: Andre McCurdy Signed-off-by: Ross Burton --- diff --git a/meta/recipes-support/boost/boost.inc b/meta/recipes-support/boost/boost.inc index c55221ff1b8..982446c0683 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}'