From: Richard Purdie Date: Tue, 31 Mar 2020 21:54:16 +0000 (+0100) Subject: scripts/oe-buildenv-internal: Add pointer to scripts/install-buildtools X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~11407 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=38e3d5bd3d05ed00a2fc55e3729cb8a6d4e4132f;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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 --- diff --git a/scripts/oe-buildenv-internal b/scripts/oe-buildenv-internal index c62688fbd23..ba0a9b44d6f 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