diff options
author | Xiaofeng Yan <xiaofeng.yan@windriver.com> | 2012-01-12 15:34:23 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-01-16 12:21:45 +0000 |
commit | 458ffd3f47b99ee89e6cb8015d68f9820f86e3e7 (patch) | |
tree | bd1ec9f00cc835916cfad7f114c0a5c46fdfd774 /meta/recipes-graphics | |
parent | 785412c0dfb8df055e3f5fa865474ee1cf0ce10f (diff) | |
download | openembedded-core-458ffd3f47b99ee89e6cb8015d68f9820f86e3e7.tar.gz openembedded-core-458ffd3f47b99ee89e6cb8015d68f9820f86e3e7.tar.bz2 openembedded-core-458ffd3f47b99ee89e6cb8015d68f9820f86e3e7.zip |
cairo.inc: Change configuration of directfb to gtk-directfb
"direcdtfb" is a wrong configuration in PACKAGECONFIG. It should be "gtk-directfb".
PACKAGECONFIG can't select directfb as backend rightly, or else.
[YOCTO #1900]
Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
Diffstat (limited to 'meta/recipes-graphics')
-rw-r--r-- | meta/recipes-graphics/cairo/cairo.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-graphics/cairo/cairo.inc b/meta/recipes-graphics/cairo/cairo.inc index 5f8f7b6890..930675d0ed 100644 --- a/meta/recipes-graphics/cairo/cairo.inc +++ b/meta/recipes-graphics/cairo/cairo.inc @@ -13,7 +13,7 @@ LICENSE = "MPL-1 & LGPLv2.1" X11DEPENDS = "virtual/libx11 libsm libxrender" DEPENDS = "libpng fontconfig pixman glib-2.0" PACKAGECONFIG ??= "${@base_contains('DISTRO_FEATURES', 'x11', 'x11', '', d)} \ - ${@base_contains('DISTRO_FEATURES', 'gtk-directfb', 'directfb', '', d)}" + ${@base_contains('DISTRO_FEATURES', 'gtk-directfb', 'gtk-directfb', '', d)}" PACKAGECONFIG[x11] = "--with-x=yes,--without-x,${X11DEPENDS}" PACKAGECONFIG[gtk-directfb] = "--enable-directfb=yes,,directfb" |