diff options
author | Koen Kooi <koen@openembedded.org> | 2010-03-04 21:09:19 +0100 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-03-04 21:10:09 +0100 |
commit | f6d6b302551a184d6a88f661e2369763e2874a8b (patch) | |
tree | 066f327a4c3d347ca5c2fdbb41b5cb2a5c00304c | |
parent | 37e7edb4cec5a9db9ad4e7bf71d785ed67668b1b (diff) |
gnome-doc-utils: don't build docs since we lack the libxml2 python native module
-rw-r--r-- | recipes/gnome/gnome-doc-utils.inc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/recipes/gnome/gnome-doc-utils.inc b/recipes/gnome/gnome-doc-utils.inc index 15905270f2..a1defa5dd5 100644 --- a/recipes/gnome/gnome-doc-utils.inc +++ b/recipes/gnome/gnome-doc-utils.inc @@ -1,12 +1,16 @@ LICENSE = "GPL LGPL" DEPENDS = "libxml2 libxslt libxslt-native" -INC_PR = "r4" +INC_PR = "r5" inherit gnome EXTRA_OECONF = "--disable-scrollkeeper" +do_configure_prepend() { + sed -i -e 's: doc::g' ${S}/Makefile.am +} + do_install_append() { mkdir -p ${D}${datadir}/xml/gnome/xslt/ cp -pPr ${S}/xslt/* ${D}${datadir}/xml/gnome/xslt/ |