diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2015-11-29 08:39:50 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-11-29 14:25:36 +0100 |
commit | 9b17d8285096087bff8543d79e8a2b6ea0810192 (patch) | |
tree | e2acd343d821f19f223e549e5d0505b56c7531a7 | |
parent | e0807e5dce99e54e6a990766240fc993be586c31 (diff) | |
download | buildroot-9b17d8285096087bff8543d79e8a2b6ea0810192.tar.gz buildroot-9b17d8285096087bff8543d79e8a2b6ea0810192.zip |
yad: needs gtk3-x11
Doesn't build with broadway or wayland since it wants the X-variant of
gdk. Fixes:
http://autobuild.buildroot.net/results/91d/91dc6ab749f967ae046f856f3f592d5a548499c6/
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/yad/yad.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/yad/yad.mk b/package/yad/yad.mk index 9d7ab370c8..fc25267d6d 100644 --- a/package/yad/yad.mk +++ b/package/yad/yad.mk @@ -13,7 +13,7 @@ YAD_DEPENDENCIES = host-intltool host-pkgconf YAD_CONF_OPTS = --enable-html=no -ifeq ($(BR2_PACKAGE_LIBGTK3),y) +ifeq ($(BR2_PACKAGE_LIBGTK3_X11),y) YAD_DEPENDENCIES += libgtk3 YAD_CONF_OPTS += --with-gtk=gtk3 else |