From: Thomas Huth <[email protected]> pc-bios/optionrom/Makefile uses $(PYTHON) for running a Python script, but this variable is never initialized here. So the script gets run via its shebang line - which fails if the "python3" binary is not available on the system. To fix this, write the PYTHON configuration to the config.mak file of the optionroms.
Signed-off-by: Thomas Huth <[email protected]> --- configure | 1 + 1 file changed, 1 insertion(+) diff --git a/configure b/configure index 55e0bd34256..f7e8d7ad4c8 100755 --- a/configure +++ b/configure @@ -1643,6 +1643,7 @@ probe_target_compiler() { } write_target_makefile() { + echo "PYTHON=$python" echo "EXTRA_CFLAGS=$target_cflags" if test -z "$target_cc" && test -z "$target_as"; then test -z "$container_image" && error_exit "Internal error: could not find cross compiler for $1?" -- 2.52.0
