aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2020-02-14 18:13:14 +0000
committerJeremy A. Puhlman <jpuhlman@mvista.com>2020-07-16 09:01:10 -0700
commitf9495632186dd466ef8f7884c908c2ebef9ec499 (patch)
treeb765cb541684d58dccda062726cd4fa9973c9ecc
parente83a54aa585deadda8a6a665c53ad6fff2ef363c (diff)
downloadopenembedded-core-contrib-f9495632186dd466ef8f7884c908c2ebef9ec499.tar.gz
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 <richard.purdie@linuxfoundation.org> Signed-off-by: Jeremy A. Puhlman <jpuhlman@mvista.com>
-rw-r--r--meta/classes/populate_sdk_ext.bbclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/populate_sdk_ext.bbclass b/meta/classes/populate_sdk_ext.bbclass
index 40b0375e0b..8245361a33 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=""