From a6ca63d77aafe088c90340d65d912666da2d7545 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Thu, 23 Jul 2009 14:37:06 +0100 Subject: bitbake-dev: Note that python 2.6 is needed Signed-off-by: Richard Purdie --- bitbake-dev/bin/bitbake | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'bitbake-dev') 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 #============================================================================# -- cgit v1.2.3-54-g00ecf