diff options
Diffstat (limited to 'bitbake/lib/bb/ui')
-rwxr-xr-x | bitbake/lib/bb/ui/hob.py | 2 |
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)))) |