aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndre McCurdy <armccurdy@gmail.com>2015-11-12 13:00:39 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-11-25 07:57:02 +0000
commit871d3279fd3360628c8fd9a37134eca541b10636 (patch)
tree41dc367473d6c6ab3464bc8f3843a8936c5a52a7
parent85ed9f581184d4028d407cd69f1ae6c58836aa77 (diff)
downloadopenembedded-core-contrib-871d3279fd3360628c8fd9a37134eca541b10636.tar.gz
boost.inc: remove unused parameter from get_boost_parallel_make()
The bb parameter seems to have been accidentally left behind after: http://git.openembedded.org/openembedded-core/commit/?id=1ff36aaec25a7ee89514366fe484345e8d1d7b64 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.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-support/boost/boost.inc b/meta/recipes-support/boost/boost.inc
index 3288e845f9..a1b434d86c 100644
--- a/meta/recipes-support/boost/boost.inc
+++ b/meta/recipes-support/boost/boost.inc
@@ -114,7 +114,7 @@ BJAM_TOOLS = "--ignore-site-config \
# use PARALLEL_MAKE to speed up the build, but limit it by -j 64, greater paralelism causes bjam to segfault or to ignore -j
# https://svn.boost.org/trac/boost/ticket/7634
-def get_boost_parallel_make(bb, d):
+def get_boost_parallel_make(d):
pm = d.getVar('PARALLEL_MAKE', True)
if pm:
# look for '-j' and throw other options (e.g. '-l') away
@@ -136,7 +136,7 @@ def get_boost_parallel_make(bb, d):
return ""
-BOOST_PARALLEL_MAKE = "${@get_boost_parallel_make(bb, d)}"
+BOOST_PARALLEL_MAKE = "${@get_boost_parallel_make(d)}"
BJAM_OPTS = '${BOOST_PARALLEL_MAKE} \
${BJAM_TOOLS} \
-sBOOST_BUILD_USER_CONFIG=${S}/tools/build/example/user-config.jam \