summaryrefslogtreecommitdiffstats
path: root/meta/classes/gtk-doc.bbclass
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2012-07-19 15:04:06 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-07-22 11:42:16 +0100
commit8744139f1256bf0cc4a6207fa4f5562741322416 (patch)
tree552d6fa5252eea864b568bcfe3f32500b902439a /meta/classes/gtk-doc.bbclass
parent3e66106b34d2f29262a685ce23387e60c512412d (diff)
downloadpoky-8744139f1256bf0cc4a6207fa4f5562741322416.tar.gz
change gtk-doc.bbclass to pull in depends and oeconf
(From OE-Core rev: 28dacc5a83ccf74f8f4895adb471af703d02259a) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/gtk-doc.bbclass')
-rw-r--r--meta/classes/gtk-doc.bbclass20
1 files changed, 16 insertions, 4 deletions
diff --git a/meta/classes/gtk-doc.bbclass b/meta/classes/gtk-doc.bbclass
index 58daaf39e2..603b1916a9 100644
--- a/meta/classes/gtk-doc.bbclass
+++ b/meta/classes/gtk-doc.bbclass
@@ -1,4 +1,16 @@
1# We don't have gtk-doc so disable it 1# Helper class to pull in the right gtk-doc dependencies and disable
2do_configure_prepend() { 2# gtk-doc.
3 echo "EXTRA_DIST=">> ${S}/gtk-doc.make 3#
4} 4# Long-term it would be great if this class could be toggled between
5# gtk-doc-stub-native and the real gtk-doc-native, which would enable
6# re-generation of documentation. For now, we'll make do with this which
7# packages up any existing documentation (so from tarball builds).
8
9DEPENDS_append = " gtk-doc-stub-native"
10DEPENDS_virtclass-native_append = " gtk-doc-stub-native"
11
12EXTRA_OECONF_append = "\
13 --disable-gtk-doc \
14 --disable-gtk-doc-html \
15 --disable-gtk-doc-pdf \
16"