From: Richard Purdie Date: Thu, 23 Jul 2009 13:37:06 +0000 (+0100) Subject: bitbake-dev: Note that python 2.6 is needed X-Git-Tag: 2011-1~7179 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=a6ca63d77aafe088c90340d65d912666da2d7545;p=openembedded-core.git bitbake-dev: Note that python 2.6 is needed Signed-off-by: Richard Purdie --- diff --git a/bitbake-dev/bin/bitbake b/bitbake-dev/bin/bitbake index 87c3a94083..f4cd0cb69a 100755 --- a/bitbake-dev/bin/bitbake +++ b/bitbake-dev/bin/bitbake @@ -32,6 +32,10 @@ from bb.ui import uievent __version__ = "1.9.0" +if sys.hexversion < 0x020600F0: + print "Sorry, python 2.6 or later is required for this version of bitbake" + sys.exit(1) + #============================================================================# # BBOptions #============================================================================#