From 9c926e88fc2dbb89b592e906ea19f2e41b344825 Mon Sep 17 00:00:00 2001 From: Andreas Müller Date: Mon, 16 Jan 2012 16:32:20 +0000 Subject: evince: add cross-compile-fix.patch from classic oe to fix build error MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit error message was | warning: failed to load external entity "/usr/share/xml/gnome/xslt/docbook/omf/db2omf.xsl" | cannot parse /usr/share/xml/gnome/xslt/docbook/omf/db2omf.xsl | warning: failed to load external entity "/usr/share/xml/gnome/xslt/docbook/omf/db2omf.xsl" | cannot parse /usr/share/xml/gnome/xslt/docbook/omf/db2omf.xsl | make[2]: *** [evince-C.omf] Error 1 [1] http://cgit.openembedded.org/openembedded/tree/recipes/evince/evince/cross-compile-fix.patch Signed-off-by: Andreas Müller Signed-off-by: Koen Kooi --- .../evince/evince/cross-compile-fix.patch | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 meta-gnome/recipes-gnome/evince/evince/cross-compile-fix.patch (limited to 'meta-gnome/recipes-gnome/evince/evince') diff --git a/meta-gnome/recipes-gnome/evince/evince/cross-compile-fix.patch b/meta-gnome/recipes-gnome/evince/evince/cross-compile-fix.patch new file mode 100644 index 0000000000..6f5420a52a --- /dev/null +++ b/meta-gnome/recipes-gnome/evince/evince/cross-compile-fix.patch @@ -0,0 +1,25 @@ +Index: evince-2.30.0/gnome-doc-utils.make +=================================================================== +--- evince-2.30.0.orig/gnome-doc-utils.make 2010-03-29 11:52:47.000000000 -0700 ++++ evince-2.30.0/gnome-doc-utils.make 2010-08-17 15:20:22.597646001 -0700 +@@ -132,13 +132,12 @@ _DOC_ABS_SRCDIR = @abs_srcdir@ + + _xml2po ?= `which xml2po` + _xml2po_mode = $(if $(DOC_ID),mallard,docbook) +- +-_db2html ?= `$(PKG_CONFIG) --variable db2html gnome-doc-utils` +-_db2omf ?= `$(PKG_CONFIG) --variable db2omf gnome-doc-utils` +-_malrng ?= `$(PKG_CONFIG) --variable malrng gnome-doc-utils` +-_chunks ?= `$(PKG_CONFIG) --variable xmldir gnome-doc-utils`/gnome/xslt/docbook/utils/chunks.xsl +-_credits ?= `$(PKG_CONFIG) --variable xmldir gnome-doc-utils`/gnome/xslt/docbook/utils/credits.xsl +-_ids ?= `$(PKG_CONFIG) --variable xmldir gnome-doc-utils`/gnome/xslt/docbook/utils/ids.xsl ++_db2html ?= ${PKG_CONFIG_SYSROOT_DIR}`$(PKG_CONFIG) --variable db2html gnome-doc-utils` ++_db2omf ?= ${PKG_CONFIG_SYSROOT_DIR}`$(PKG_CONFIG) --variable db2omf gnome-doc-utils` ++_malrng ?= ${PKG_CONFIG_SYSROOT_DIR}`$(PKG_CONFIG) --variable malrng gnome-doc-utils` ++_chunks ?= ${PKG_CONFIG_SYSROOT_DIR}`$(PKG_CONFIG) --variable xmldir gnome-doc-utils`/gnome/xslt/docbook/utils/chunks.xsl ++_credits ?= ${PKG_CONFIG_SYSROOT_DIR}`$(PKG_CONFIG) --variable xmldir gnome-doc-utils`/gnome/xslt/docbook/utils/credits.xsl ++_ids ?= ${PKG_CONFIG_SYSROOT_DIR}`$(PKG_CONFIG) --variable xmldir gnome-doc-utils`/gnome/xslt/docbook/utils/ids.xsl + + if ENABLE_SK + _ENABLE_SK = true + -- cgit 1.2.3-korg