diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2017-02-20 14:17:03 -0500 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2017-02-22 13:16:55 +0100 |
commit | b8d9ff8f4bed3e289c58fa93fa4ae355e4252fa7 (patch) | |
tree | 50d610c256c186c6a6625e86415e5283c0b08dbd /meta-gnome | |
parent | 4fe8f4037355bf157fa8609b33d6eaf7508d348e (diff) | |
download | meta-openembedded-b8d9ff8f4bed3e289c58fa93fa4ae355e4252fa7.tar.gz |
gthumb: fix implict dependency on gconf causing configure fail
Currently we see:
| checking for gconftool-2... no
| configure: error: gconftool-2 executable not found in your path - should be installed with GConf
| ERROR: Function failed: do_configure (log file is located at gthumb/2.12.4-r4/temp/log.do_configure.5243)
ERROR: Task (meta-gnome/recipes-gnome/gthumb/gthumb_2.12.4.bb:do_configure) failed with exit code '1'
Presumably this now happens more regularly with demise of the shared
sysroot. Adding gconf-native to the dependency list fixes it.
Cc: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-gnome')
-rw-r--r-- | meta-gnome/recipes-gnome/gthumb/gthumb_2.12.4.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-gnome/recipes-gnome/gthumb/gthumb_2.12.4.bb b/meta-gnome/recipes-gnome/gthumb/gthumb_2.12.4.bb index 94a14c818f..1702ccb017 100644 --- a/meta-gnome/recipes-gnome/gthumb/gthumb_2.12.4.bb +++ b/meta-gnome/recipes-gnome/gthumb/gthumb_2.12.4.bb | |||
@@ -2,7 +2,7 @@ SUMMARY = "gThumb is an image viewer and browser for the GNOME Desktop" | |||
2 | SECTION = "x11/gnome" | 2 | SECTION = "x11/gnome" |
3 | LICENSE = "GPLv2" | 3 | LICENSE = "GPLv2" |
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552" | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552" |
5 | DEPENDS = "gnome-common-native glib-2.0 gtk+ libxml2 gnome-doc-utils libunique gconf libpng gstreamer jpeg tiff gst-plugins-base intltool-native" | 5 | DEPENDS = "gnome-common-native glib-2.0 gtk+ libxml2 gnome-doc-utils libunique gconf libpng gstreamer jpeg tiff gst-plugins-base intltool-native gconf-native" |
6 | 6 | ||
7 | PR = "r4" | 7 | PR = "r4" |
8 | 8 | ||