summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorJessica Zhang <jessica.zhang@intel.com>2013-01-03 15:32:05 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-01-18 12:53:05 +0000
commit2ad18945202c46cd71fe6823c80b472ec434000d (patch)
tree50ca70d6072eee3c3815d74dbfaf8bac04a3a22e /bitbake
parent94284f1ce0e45417e19f6fd8269e08e20e29777d (diff)
downloadpoky-2ad18945202c46cd71fe6823c80b472ec434000d.tar.gz
bitbake: hob: Fix GTK+ and PyGtk version check error message to be more clear
Improve the error message the user sees if the versions are incorrect. [YOCTO #3637] (Bitbake rev: 7e3a99949358f4362876df5a82f8aeaae72c3c97) Signed-off-by: Jessica Zhang <jessica.zhang@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-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 9ec32b1517..55bd84cca8 100755
--- a/bitbake/lib/bb/ui/hob.py
+++ b/bitbake/lib/bb/ui/hob.py
@@ -22,7 +22,7 @@
22 22
23import sys 23import sys
24import os 24import os
25requirements = "FATAL: Gtk+, PyGtk and PyGobject are required to use Hob" 25requirements = "FATAL: Hob requires Gtk+ 2.20.0 or higher, PyGtk 2.21.0 or higher"
26try: 26try:
27 import gobject 27 import gobject
28 import gtk 28 import gtk