From: Ross Burton Date: Thu, 11 Jul 2019 23:54:23 +0000 (+0100) Subject: ninja: use Python 3 X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~13909 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b6a84fff1fbdab49af626d221085f3c052c4021d;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git ninja: use Python 3 As part of the mission to remove the use of Python 2, explicitly bootstrap Ninja with Python 3. Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-devtools/ninja/ninja_1.9.0.bb b/meta/recipes-devtools/ninja/ninja_1.9.0.bb index 1b063289614..f1236e8ac82 100644 --- a/meta/recipes-devtools/ninja/ninja_1.9.0.bb +++ b/meta/recipes-devtools/ninja/ninja_1.9.0.bb @@ -17,11 +17,11 @@ S = "${WORKDIR}/git" do_configure[noexec] = "1" do_compile_class-native() { - ./configure.py --bootstrap + python3 ./configure.py --bootstrap } do_compile() { - ./configure.py + python3 ./configure.py ninja }