diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-06-27 23:49:45 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-09-09 10:43:46 +0100 |
| commit | 5b792b556dae350cd9044a1dfbe0b08ba243a3f6 (patch) | |
| tree | bb75cfcb3287b1ae9b6fdda77278fa31357e1240 /meta | |
| parent | c1b081b226506301f45c93fad3e2ae41ed19728c (diff) | |
| download | poky-5b792b556dae350cd9044a1dfbe0b08ba243a3f6.tar.gz | |
populate_sdk_ext: Fix to use python3, not python
We should be using python3 here, it was missed in the conversion. Spotted on
autobuilder tests failing on systems with python missing.
(From OE-Core rev: db07b09196022078346aadd565760240b7da6a71)
(From OE-Core rev: 2ce4dd53443e86c707280716bfe23572eff58abb)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
| -rw-r--r-- | meta/classes/populate_sdk_ext.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/populate_sdk_ext.bbclass b/meta/classes/populate_sdk_ext.bbclass index 8245361a33..9bab54c6bd 100644 --- a/meta/classes/populate_sdk_ext.bbclass +++ b/meta/classes/populate_sdk_ext.bbclass | |||
| @@ -634,7 +634,7 @@ sdk_ext_postinst() { | |||
| 634 | # current working directory when first ran, nor will it set $1 when | 634 | # current working directory when first ran, nor will it set $1 when |
| 635 | # sourcing a script. That is why this has to look so ugly. | 635 | # sourcing a script. That is why this has to look so ugly. |
| 636 | LOGFILE="$target_sdk_dir/preparing_build_system.log" | 636 | LOGFILE="$target_sdk_dir/preparing_build_system.log" |
| 637 | sh -c ". buildtools/environment-setup* > $LOGFILE && cd $target_sdk_dir/`dirname ${oe_init_build_env_path}` && set $target_sdk_dir && . $target_sdk_dir/${oe_init_build_env_path} $target_sdk_dir >> $LOGFILE && python $target_sdk_dir/ext-sdk-prepare.py $LOGFILE '${SDK_INSTALL_TARGETS}'" || { echo "printf 'ERROR: this SDK was not fully installed and needs reinstalling\n'" >> $env_setup_script ; exit 1 ; } | 637 | sh -c ". buildtools/environment-setup* > $LOGFILE && cd $target_sdk_dir/`dirname ${oe_init_build_env_path}` && set $target_sdk_dir && . $target_sdk_dir/${oe_init_build_env_path} $target_sdk_dir >> $LOGFILE && python3 $target_sdk_dir/ext-sdk-prepare.py $LOGFILE '${SDK_INSTALL_TARGETS}'" || { echo "printf 'ERROR: this SDK was not fully installed and needs reinstalling\n'" >> $env_setup_script ; exit 1 ; } |
| 638 | rm $target_sdk_dir/ext-sdk-prepare.py | 638 | rm $target_sdk_dir/ext-sdk-prepare.py |
| 639 | fi | 639 | fi |
| 640 | echo done | 640 | echo done |
