diff options
author | Joshua Lock <josh@linux.intel.com> | 2010-12-21 10:42:02 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-12-21 14:41:40 +0000 |
commit | 9c4e63b18b3730707e3642daa0d8a66252ffdf87 (patch) | |
tree | 1076938c5129c98bf971db37e35e1e94625f8b2d | |
parent | 68030f43f84a5aad221499472993b503cdf76c76 (diff) | |
download | poky-9c4e63b18b3730707e3642daa0d8a66252ffdf87.tar.gz |
gnome-doc-utils: use BBCLASSEXTEND for native variant
A recent patch from me created a native variant of gnome-doc-utils with a new
recipe file. This is uneccesarry. BBCLASSEXTEND is the brighter future.
Signed-off-by: Joshua Lock <josh@linux.intel.com>
-rw-r--r-- | meta/recipes-gnome/gnome/gnome-doc-utils-native_0.20.2.bb | 7 | ||||
-rw-r--r-- | meta/recipes-gnome/gnome/gnome-doc-utils.inc | 3 |
2 files changed, 3 insertions, 7 deletions
diff --git a/meta/recipes-gnome/gnome/gnome-doc-utils-native_0.20.2.bb b/meta/recipes-gnome/gnome/gnome-doc-utils-native_0.20.2.bb deleted file mode 100644 index 30d5a5b5b1..0000000000 --- a/meta/recipes-gnome/gnome/gnome-doc-utils-native_0.20.2.bb +++ /dev/null | |||
@@ -1,7 +0,0 @@ | |||
1 | require gnome-doc-utils_${PV}.bb | ||
2 | |||
3 | inherit native | ||
4 | |||
5 | DEPENDS = "libxml2-native libxslt-native" | ||
6 | |||
7 | PR = "r0" | ||
diff --git a/meta/recipes-gnome/gnome/gnome-doc-utils.inc b/meta/recipes-gnome/gnome/gnome-doc-utils.inc index 0cd8203ae1..7328c59279 100644 --- a/meta/recipes-gnome/gnome/gnome-doc-utils.inc +++ b/meta/recipes-gnome/gnome/gnome-doc-utils.inc | |||
@@ -1,5 +1,6 @@ | |||
1 | LICENSE = "GPL LGPL" | 1 | LICENSE = "GPL LGPL" |
2 | DEPENDS = "libxml2 libxslt libxslt-native gnome-doc-utils-native" | 2 | DEPENDS = "libxml2 libxslt libxslt-native gnome-doc-utils-native" |
3 | DEPENDS_virtclass-native = "libxml2-native libxslt-native" | ||
3 | 4 | ||
4 | inherit gnome | 5 | inherit gnome |
5 | 6 | ||
@@ -11,3 +12,5 @@ do_install_append() { | |||
11 | } | 12 | } |
12 | 13 | ||
13 | FILES_${PN} += "${datadir}/xml*" | 14 | FILES_${PN} += "${datadir}/xml*" |
15 | |||
16 | BBCLASSEXTEND = "native" | ||