diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-04-09 19:29:56 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-02 15:41:32 +0100 |
commit | 316ab4bb2bd76f788b5aa7ee6e0326551b56e267 (patch) | |
tree | 13ad24b1b64128fb8a6a333f074b76ab6a015a7e | |
parent | 350c3126e130b1f6d22c6b5061a3feacc05025fc (diff) | |
download | poky-316ab4bb2bd76f788b5aa7ee6e0326551b56e267.tar.gz |
Bump minimum python version check to 2.6.
(Bitbake rev: 85c000cc7db47cfd489cf282c58db2dab0d87908)
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
-rwxr-xr-x | bitbake/bin/bitbake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake index 8fdb6540a2..b577e53895 100755 --- a/bitbake/bin/bitbake +++ b/bitbake/bin/bitbake | |||
@@ -36,8 +36,8 @@ from bb.server import none | |||
36 | 36 | ||
37 | __version__ = "1.9.0" | 37 | __version__ = "1.9.0" |
38 | 38 | ||
39 | if sys.hexversion < 0x020500F0: | 39 | if sys.hexversion < 0x020600F0: |
40 | print "Sorry, python 2.5 or later is required for this version of bitbake" | 40 | print "Sorry, python 2.6 or later is required for this version of bitbake" |
41 | sys.exit(1) | 41 | sys.exit(1) |
42 | 42 | ||
43 | #============================================================================# | 43 | #============================================================================# |