summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-networking/classes/waf-samba.bbclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta-networking/classes/waf-samba.bbclass b/meta-networking/classes/waf-samba.bbclass
index 1632c3c60e..9c32952f6a 100644
--- a/meta-networking/classes/waf-samba.bbclass
+++ b/meta-networking/classes/waf-samba.bbclass
@@ -1,9 +1,9 @@
1# waf is a build system which is used by samba related project. 1# waf is a build system which is used by samba related project.
2# Obtain details from https://wiki.samba.org/index.php/Waf 2# Obtain details from https://wiki.samba.org/index.php/Waf
3# 3#
4inherit qemu pythonnative 4inherit qemu python3native
5 5
6DEPENDS += "qemu-native libxslt-native docbook-xsl-stylesheets-native python" 6DEPENDS += "qemu-native libxslt-native docbook-xsl-stylesheets-native python3"
7 7
8CONFIGUREOPTS = " --prefix=${prefix} \ 8CONFIGUREOPTS = " --prefix=${prefix} \
9 --bindir=${bindir} \ 9 --bindir=${bindir} \
@@ -111,7 +111,7 @@ do_configure() {
111 111
112do_compile[progress] = "outof:^\[\s*(\d+)/\s*(\d+)\]\s+" 112do_compile[progress] = "outof:^\[\s*(\d+)/\s*(\d+)\]\s+"
113do_compile () { 113do_compile () {
114 python ./buildtools/bin/waf ${@oe.utils.parallel_make_argument(d, '-j%d', limit=64)} 114 python3 ./buildtools/bin/waf ${@oe.utils.parallel_make_argument(d, '-j%d', limit=64)}
115} 115}
116 116
117do_install() { 117do_install() {