diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-02-14 18:13:14 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-02-15 10:26:42 +0000 |
commit | f73bf58f0552b4f51969dfe4011074a7c458b01e (patch) | |
tree | 7b85cf33d9ed2ade7f113aa4342d3d7deceeef31 /meta/classes/populate_sdk_ext.bbclass | |
parent | 0a3f0af9e3eaa295255ad1f3078d83b455511a4b (diff) | |
download | poky-f73bf58f0552b4f51969dfe4011074a7c458b01e.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.
(From OE-Core rev: 946ce21b10dcad506edcaadb4e4242c049e4c316)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/populate_sdk_ext.bbclass')
-rw-r--r-- | meta/classes/populate_sdk_ext.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/populate_sdk_ext.bbclass b/meta/classes/populate_sdk_ext.bbclass index 9511e553f5..57fd29b1bb 100644 --- a/meta/classes/populate_sdk_ext.bbclass +++ b/meta/classes/populate_sdk_ext.bbclass | |||
@@ -613,8 +613,8 @@ sdk_ext_preinst() { | |||
613 | exit 1 | 613 | exit 1 |
614 | fi | 614 | fi |
615 | # The relocation script used by buildtools installer requires python | 615 | # The relocation script used by buildtools installer requires python |
616 | if ! command -v python > /dev/null; then | 616 | if ! command -v python3 > /dev/null; then |
617 | echo "ERROR: The installer requires python, please install it first" | 617 | echo "ERROR: The installer requires python3, please install it first" |
618 | exit 1 | 618 | exit 1 |
619 | fi | 619 | fi |
620 | missing_utils="" | 620 | missing_utils="" |