summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2020-03-31 22:54:16 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-04-01 11:43:59 +0100
commit38e3d5bd3d05ed00a2fc55e3729cb8a6d4e4132f (patch)
treebdc65608dba15a0ed4f13faf2a146516937b1fe4 /scripts
parentb4ddf5b9d8cd769b7026663f93c8bc69b55d8cbf (diff)
downloadopenembedded-core-contrib-38e3d5bd3d05ed00a2fc55e3729cb8a6d4e4132f.tar.gz
scripts/oe-buildenv-internal: Add pointer to scripts/install-buildtools
If the minimum python version isn't met, show a pointer to the new install-buildtools script. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/oe-buildenv-internal2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/oe-buildenv-internal b/scripts/oe-buildenv-internal
index c62688fbd2..ba0a9b44d6 100755
--- a/scripts/oe-buildenv-internal
+++ b/scripts/oe-buildenv-internal
@@ -34,7 +34,7 @@ fi
# any other new feature use, just check the version here.
py_v35_check=$(python3 -c 'import sys; print(sys.version_info >= (3,5,0))')
if [ "$py_v35_check" != "True" ]; then
- echo >&2 "BitBake requires Python 3.5.0 or later as 'python3'"
+ echo >&2 "BitBake requires Python 3.5.0 or later as 'python3 (scripts/install-buildtools can be used if needed)'"
return 1
fi
unset py_v35_check