summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorRoland Hieber <rhi@pengutronix.de>2020-05-17 15:55:13 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2020-05-19 14:23:48 +0200
commit66419725d2b0839258b7d5420e1be98275e9c5e9 (patch)
tree82d16a6f84883451245fd539c346ca2c9ced7196 /scripts
parent675ce06a3eab7a2f4c9a9587dd8344c8f5fe699b (diff)
downloadptxdist-66419725d2b0839258b7d5420e1be98275e9c5e9.tar.gz
ptxdist-66419725d2b0839258b7d5420e1be98275e9c5e9.tar.xz
ptxd_make_world_prepare: fix typo in error message
The package name in the line above was moved from host-python to host-python3, but the same change in the error message was forgotten. Fixes: 8d02a8a6e3891da78c8c ("host-python-scons: switch to python3") Signed-off-by: Roland Hieber <rhi@pengutronix.de> Message-Id: <20200517135513.3257-1-rhi@pengutronix.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/lib/ptxd_make_world_prepare.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/ptxd_make_world_prepare.sh b/scripts/lib/ptxd_make_world_prepare.sh
index be2a131e4..9ba2e78e2 100644
--- a/scripts/lib/ptxd_make_world_prepare.sh
+++ b/scripts/lib/ptxd_make_world_prepare.sh
@@ -206,7 +206,7 @@ ptxd_make_world_prepare() {
;;
scons)
if ! [[ "${pkg_build_deps}" =~ "host-python3-${pkg_conf_tool}" ]]; then
- ptxd_bailout "'${pkg_label}' uses '${pkg_conf_tool}' but does not select 'host-python-${pkg_conf_tool}'"
+ ptxd_bailout "'${pkg_label}' uses '${pkg_conf_tool}' but does not select 'host-python3-${pkg_conf_tool}'"
fi
;;
esac