mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-15 16:07:26 +00:00
waf-samba.bbclass: fix build error with PARALLEL_MAKE="-j X -l Y"
Waf doesn't handle -l. Use a function already provided by waf.bbclass in OE-Core. Inheriting waf.bbclass also makes overriding DISABLE_STATIC redundant, so drop it from recipes inheriting waf-samba. Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
committed by
Martin Jansa
parent
cc32689a5b
commit
9beb04e98d
@@ -1,7 +1,7 @@
|
||||
# waf is a build system which is used by samba related project.
|
||||
# Obtain details from https://wiki.samba.org/index.php/Waf
|
||||
#
|
||||
inherit qemu pythonnative
|
||||
inherit qemu pythonnative waf
|
||||
|
||||
DEPENDS += "qemu-native libxslt-native docbook-xsl-stylesheets-native python"
|
||||
|
||||
@@ -86,7 +86,7 @@ do_configure() {
|
||||
}
|
||||
|
||||
do_compile () {
|
||||
python ./buildtools/bin/waf ${PARALLEL_MAKE}
|
||||
python ./buildtools/bin/waf ${@get_waf_parallel_make(d)}
|
||||
}
|
||||
|
||||
do_install() {
|
||||
|
||||
Reference in New Issue
Block a user