summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoshua Lock <josh@linux.intel.com>2012-04-13 16:24:10 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-05-20 09:24:26 +0100
commitb4c8c74a45e386f99344cf9799eb5294ad6c9e3e (patch)
tree11de1232c276a4fbc60c467a730f8de765bec843
parentf9bffcab85c2895390c15747d6ccc123f8377495 (diff)
downloadpoky-b4c8c74a45e386f99344cf9799eb5294ad6c9e3e.tar.gz
hob: update required pygtk to 2.22.0 and gtk+ to 2.20.0
(Bitbake rev: e67ccbbeaecd2d9f3267995c590052c6a3c5b9ce) Signed-off-by: Joshua Lock <josh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-xbitbake/lib/bb/ui/hob.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/hob.py b/bitbake/lib/bb/ui/hob.py
index 6cd9579633..97f54ef4c6 100755
--- a/bitbake/lib/bb/ui/hob.py
+++ b/bitbake/lib/bb/ui/hob.py
@@ -30,7 +30,7 @@ try:
30 pygtk.require('2.0') # to be certain we don't have gtk+ 1.x !?! 30 pygtk.require('2.0') # to be certain we don't have gtk+ 1.x !?!
31 gtkver = gtk.gtk_version 31 gtkver = gtk.gtk_version
32 pygtkver = gtk.pygtk_version 32 pygtkver = gtk.pygtk_version
33 if gtkver < (2, 18, 0) or pygtkver < (2, 16, 0): 33 if gtkver < (2, 20, 0) or pygtkver < (2, 22, 0):
34 sys.exit("%s,\nYou have Gtk+ %s and PyGtk %s." % (requirements, 34 sys.exit("%s,\nYou have Gtk+ %s and PyGtk %s." % (requirements,
35 ".".join(map(str, gtkver)), 35 ".".join(map(str, gtkver)),
36 ".".join(map(str, pygtkver)))) 36 ".".join(map(str, pygtkver))))