diff options
author | Jessica Zhang <jessica.zhang@intel.com> | 2013-01-03 15:32:05 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-01-18 12:53:05 +0000 |
commit | 2ad18945202c46cd71fe6823c80b472ec434000d (patch) | |
tree | 50ca70d6072eee3c3815d74dbfaf8bac04a3a22e | |
parent | 94284f1ce0e45417e19f6fd8269e08e20e29777d (diff) | |
download | poky-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>
-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 9ec32b1517..55bd84cca8 100755 --- a/bitbake/lib/bb/ui/hob.py +++ b/bitbake/lib/bb/ui/hob.py | |||
@@ -22,7 +22,7 @@ | |||
22 | 22 | ||
23 | import sys | 23 | import sys |
24 | import os | 24 | import os |
25 | requirements = "FATAL: Gtk+, PyGtk and PyGobject are required to use Hob" | 25 | requirements = "FATAL: Hob requires Gtk+ 2.20.0 or higher, PyGtk 2.21.0 or higher" |
26 | try: | 26 | try: |
27 | import gobject | 27 | import gobject |
28 | import gtk | 28 | import gtk |