summaryrefslogtreecommitdiffstats
path: root/bitbake/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/bin')
-rwxr-xr-xbitbake/bin/toaster4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/bin/toaster b/bitbake/bin/toaster
index d4715fa67b..7e51014b7d 100755
--- a/bitbake/bin/toaster
+++ b/bitbake/bin/toaster
@@ -87,8 +87,8 @@ BBBASEDIR=`dirname ${BASH_SOURCE}`/..
87 87
88# Verify prerequisites 88# Verify prerequisites
89 89
90if ! echo "import django; print (1,4,5) == django.VERSION[0:3]" | python 2>/dev/null | grep True >/dev/null; then 90if ! echo "import django; print (1,5) == django.VERSION[0:2]" | python 2>/dev/null | grep True >/dev/null; then
91 echo -e "This program needs Django 1.4.5. Please install with\n\nsudo pip install django==1.4.5" 91 echo -e "This program needs Django 1.5. Please install with\n\nsudo pip install django==1.5"
92 return 2 92 return 2
93fi 93fi
94 94