From: Richard Purdie Date: Fri, 14 Feb 2020 18:13:14 +0000 (+0000) Subject: populate_sdk_ext: We now require python3, not python X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f9495632186dd466ef8f7884c908c2ebef9ec499;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git populate_sdk_ext: We now require python3, not python We no longer expect a "python" binary in PATH so update the eSDK's expectations to match. This was the only failure on autobuilder test systems with python missing. Signed-off-by: Richard Purdie Signed-off-by: Jeremy A. Puhlman --- diff --git a/meta/classes/populate_sdk_ext.bbclass b/meta/classes/populate_sdk_ext.bbclass index 40b0375e0b9..8245361a335 100644 --- a/meta/classes/populate_sdk_ext.bbclass +++ b/meta/classes/populate_sdk_ext.bbclass @@ -574,8 +574,8 @@ sdk_ext_preinst() { exit 1 fi # The relocation script used by buildtools installer requires python - if ! command -v python > /dev/null; then - echo "ERROR: The installer requires python, please install it first" + if ! command -v python3 > /dev/null; then + echo "ERROR: The installer requires python3, please install it first" exit 1 fi missing_utils=""