diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2009-07-23 14:37:06 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2009-07-23 14:37:06 +0100 |
commit | a6ca63d77aafe088c90340d65d912666da2d7545 (patch) | |
tree | 91088ee7b64b0cf905e1a46f6c54b416b680839d /bitbake-dev | |
parent | 94fe172d52286927638f7466b89f4eef4036e06b (diff) | |
download | poky-a6ca63d77aafe088c90340d65d912666da2d7545.tar.gz |
bitbake-dev: Note that python 2.6 is needed
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake-dev')
-rwxr-xr-x | bitbake-dev/bin/bitbake | 4 |
1 files changed, 4 insertions, 0 deletions
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 | |||
32 | 32 | ||
33 | __version__ = "1.9.0" | 33 | __version__ = "1.9.0" |
34 | 34 | ||
35 | if sys.hexversion < 0x020600F0: | ||
36 | print "Sorry, python 2.6 or later is required for this version of bitbake" | ||
37 | sys.exit(1) | ||
38 | |||
35 | #============================================================================# | 39 | #============================================================================# |
36 | # BBOptions | 40 | # BBOptions |
37 | #============================================================================# | 41 | #============================================================================# |