summaryrefslogtreecommitdiffstats
path: root/bitbake/bin
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-04-15 08:14:53 -0700
committerRichard Purdie <rpurdie@linux.intel.com>2010-07-02 15:41:34 +0100
commit231d3a534cdf75b3db588329fbd5d2a0fbbfba5e (patch)
tree5ef24bf623c5d4a1b8bd2b10083cf72676720db1 /bitbake/bin
parentbdbeaf476017d8f11629f74ca457f304ffd906e9 (diff)
downloadast2050-yocto-poky-231d3a534cdf75b3db588329fbd5d2a0fbbfba5e.zip
ast2050-yocto-poky-231d3a534cdf75b3db588329fbd5d2a0fbbfba5e.tar.gz
Drop an unnecessary second python version check and use the less ugly sys.version_info
(Bitbake rev: 8f4b7b10f8740a41c085beeca5105f15204b0979) Signed-off-by: Chris Larson <chris_larson@mentor.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/bin')
-rwxr-xr-xbitbake/bin/bitbake8
1 files changed, 2 insertions, 6 deletions
diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake
index 8db6047..a8d6fd9 100755
--- a/bitbake/bin/bitbake
+++ b/bitbake/bin/bitbake
@@ -23,8 +23,8 @@
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
import sys
-if sys.hexversion < 0x020600F0:
- print "Sorry, python 2.6 or later is required for this version of bitbake"
+if sys.version_info < (2, 6, 0):
+ print "Sorry, python 2.6.0 or later is required for this version of bitbake"
sys.exit(1)
import os
@@ -92,10 +92,6 @@ warnings.simplefilter("ignore", DeprecationWarning)
def main():
return_value = 0
- pythonver = sys.version_info
- if pythonver[0] < 2 or (pythonver[0] == 2 and pythonver[1] < 5):
- print "Sorry, bitbake needs python 2.5 or later."
- sys.exit(1)
parser = optparse.OptionParser(
version = "BitBake Build Tool Core version %s, %%prog version %s" % (bb.__version__, __version__),
OpenPOWER on IntegriCloud