diff options
author | Michael Wood <michael.g.wood@intel.com> | 2016-06-10 11:01:10 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-15 08:35:05 +0100 |
commit | 5bebe39a8a6caf4af58c4900b3d5f3b94d2a4d35 (patch) | |
tree | dec81a0a235a05c92464bbd84bf1c22dae93e72b /bitbake | |
parent | e23faacd6f17be69c6945ffb55779cedee3c03a6 (diff) | |
download | poky-5bebe39a8a6caf4af58c4900b3d5f3b94d2a4d35.tar.gz |
bitbake: toaster: bin Use python 3 for our django modules check
Explicitly use python3 so that the modules for python3 are checked.
(Bitbake rev: e7951541c34c5561187110ba0ec69b9c45022747)
Signed-off-by: Michael Wood <michael.g.wood@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rwxr-xr-x | bitbake/bin/toaster | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/bin/toaster b/bitbake/bin/toaster index be1bb9c4f7..e3a0dae48f 100755 --- a/bitbake/bin/toaster +++ b/bitbake/bin/toaster | |||
@@ -115,7 +115,7 @@ verify_prereq() { | |||
115 | exp='s/Django\([><=]\+\)\([^,]\+\),\([><=]\+\)\(.\+\)/' | 115 | exp='s/Django\([><=]\+\)\([^,]\+\),\([><=]\+\)\(.\+\)/' |
116 | exp=$exp'import sys,django;version=django.get_version().split(".");' | 116 | exp=$exp'import sys,django;version=django.get_version().split(".");' |
117 | exp=$exp'sys.exit(not (version \1 "\2".split(".") and version \3 "\4".split(".")))/p' | 117 | exp=$exp'sys.exit(not (version \1 "\2".split(".") and version \3 "\4".split(".")))/p' |
118 | if ! sed -n "$exp" $reqfile | python - ; then | 118 | if ! sed -n "$exp" $reqfile | python3 - ; then |
119 | req=`grep ^Django $reqfile` | 119 | req=`grep ^Django $reqfile` |
120 | echo "This program needs $req" | 120 | echo "This program needs $req" |
121 | echo "Please install with pip install -r $reqfile" | 121 | echo "Please install with pip install -r $reqfile" |