* [PATCH 0/1] Fix boost build
@ 2013-08-21 13:08 Marko Lindqvist
2013-08-21 13:08 ` [PATCH 1/1] boost: fix build when PARALLEL_MAKE is not set Marko Lindqvist
0 siblings, 1 reply; 2+ messages in thread
From: Marko Lindqvist @ 2013-08-21 13:08 UTC (permalink / raw)
To: openembedded-core
The following changes since commit d98f08a7ad95d0b17846276b028a6614f16b6846:
genext2fs: fix memory corruption on powerpc (2013-08-20 07:11:44 -0700)
are available in the git repository at:
git://git.openembedded.org/openembedded-core-contrib cazfi/fixes
http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=cazfi/fixes
Marko Lindqvist (1):
boost: fix build when PARALLEL_MAKE is not set
meta/recipes-support/boost/boost.inc | 2 ++
1 file changed, 2 insertions(+)
--
1.7.10.4
^ permalink raw reply [flat|nested] 2+ messages in thread
* [PATCH 1/1] boost: fix build when PARALLEL_MAKE is not set
2013-08-21 13:08 [PATCH 0/1] Fix boost build Marko Lindqvist
@ 2013-08-21 13:08 ` Marko Lindqvist
0 siblings, 0 replies; 2+ messages in thread
From: Marko Lindqvist @ 2013-08-21 13:08 UTC (permalink / raw)
To: openembedded-core
It was passing "None" to bjam, which then parsed it as unknown build target.
Signed-off-by: Marko Lindqvist <cazfi74@gmail.com>
---
meta/recipes-support/boost/boost.inc | 2 ++
1 file changed, 2 insertions(+)
diff --git a/meta/recipes-support/boost/boost.inc b/meta/recipes-support/boost/boost.inc
index 87bac23..5d20b11 100644
--- a/meta/recipes-support/boost/boost.inc
+++ b/meta/recipes-support/boost/boost.inc
@@ -115,6 +115,8 @@ def get_boost_parallel_make(bb, d):
bb.error("Unable to analyse format of PARALLEL_MAKE variable: %s" % pm)
pm_nval = min(64, int(pm_val.group(0)))
return pm_prefix.group(0) + str(pm_nval) + pm[pm_val.end():]
+ else:
+ return ""
BOOST_PARALLEL_MAKE = "${@get_boost_parallel_make(bb, d)}"
BJAM_OPTS = '${BOOST_PARALLEL_MAKE} \
--
1.7.10.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-08-21 13:08 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-21 13:08 [PATCH 0/1] Fix boost build Marko Lindqvist
2013-08-21 13:08 ` [PATCH 1/1] boost: fix build when PARALLEL_MAKE is not set Marko Lindqvist
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.