diff options
author | Ross Burton <ross.burton@intel.com> | 2013-05-16 18:05:43 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-17 09:36:05 +0300 |
commit | f2c438ddfeb17bbff384e612bb247f3652d85a74 (patch) | |
tree | e53058da49553de793dcd12dd8b9f2792f34f9be /meta/recipes-support/libcroco | |
parent | c6862c8162bd79c45961a4b9f8f570a3d5346148 (diff) | |
download | openembedded-core-f2c438ddfeb17bbff384e612bb247f3652d85a74.tar.gz openembedded-core-f2c438ddfeb17bbff384e612bb247f3652d85a74.tar.bz2 openembedded-core-f2c438ddfeb17bbff384e612bb247f3652d85a74.zip |
libcroco: allow native builds
Use BBCLASSEXTEND to get native builds, and inherit gnomebase instead of gnome.
libcroco uses the class just for the SRC_URI helpers, and the full class was
pulling in many unrequired dependencies including hicolor-icon-theme-native,
which doesn't exist.
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/libcroco')
-rw-r--r-- | meta/recipes-support/libcroco/libcroco_0.6.8.bb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/recipes-support/libcroco/libcroco_0.6.8.bb b/meta/recipes-support/libcroco/libcroco_0.6.8.bb index 5c3fd5c660..3c5dc9a183 100644 --- a/meta/recipes-support/libcroco/libcroco_0.6.8.bb +++ b/meta/recipes-support/libcroco/libcroco_0.6.8.bb @@ -9,9 +9,11 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=55ca817ccb7d5b5b66355690e9abc605 \ SECTION = "x11/utils" DEPENDS = "glib-2.0 libxml2 zlib" +BBCLASSEXTEND = "native" + PR = "r1" -inherit autotools pkgconfig gnome +inherit autotools pkgconfig gnomebase GNOME_COMPRESS_TYPE = "xz" |