mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-26 12:00:48 -09:00
package/ninja: invoke python3 explicitly to configure the package
ninja depends on python3 specifically, but the configure.py file
simply uses "env python". Where no python is selected for the target
you simply won't get a python symlink in $(HOST_DIR)/usr/bin, so the
configure.py script fails to run since it can't find "python".
Notice that in order to reproduce the issue, you must not have
python2 installed on your host machine.
Signed-off-by: Avi Shukron <avraham.shukron@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
(cherry picked from commit f31cd33cef)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
committed by
Peter Korsgaard
parent
16cac460d1
commit
a1400dd65c
@@ -17,7 +17,7 @@ NINJA_LICENSE_FILES = COPYING
|
||||
HOST_NINJA_DEPENDENCIES = host-python3
|
||||
|
||||
define HOST_NINJA_BUILD_CMDS
|
||||
(cd $(@D); ./configure.py --bootstrap)
|
||||
(cd $(@D); $(HOST_DIR)/bin/python3 configure.py --bootstrap)
|
||||
endef
|
||||
|
||||
define HOST_NINJA_INSTALL_CMDS
|
||||
|
||||
Reference in New Issue
Block a user