diff options
Diffstat (limited to 'meta/recipes-gnome/gnome/gnome-doc-utils')
-rw-r--r-- | meta/recipes-gnome/gnome/gnome-doc-utils/xsltproc_nonet.patch | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/meta/recipes-gnome/gnome/gnome-doc-utils/xsltproc_nonet.patch b/meta/recipes-gnome/gnome/gnome-doc-utils/xsltproc_nonet.patch new file mode 100644 index 0000000000..73d22bfc99 --- /dev/null +++ b/meta/recipes-gnome/gnome/gnome-doc-utils/xsltproc_nonet.patch | |||
@@ -0,0 +1,34 @@ | |||
1 | This adds the -nonet option to xsltproc invocations, which fixes | ||
2 | compile errors when building gnome-doc-xslt-de.omf. | ||
3 | |||
4 | Upstream-Status: Pending | ||
5 | |||
6 | Signed-off-by: Scott Garman <scott.a.garman@intel.com> | ||
7 | |||
8 | diff -urN gnome-doc-utils-0.20.5.orig//doc/xslt/Makefile.am gnome-doc-utils-0.20.5/doc/xslt/Makefile.am | ||
9 | --- gnome-doc-utils-0.20.5.orig//doc/xslt/Makefile.am 2011-03-22 06:56:17.000000000 -0700 | ||
10 | +++ gnome-doc-utils-0.20.5/doc/xslt/Makefile.am 2011-05-04 21:03:29.382491164 -0700 | ||
11 | @@ -21,14 +21,14 @@ | ||
12 | |||
13 | $(xsldoc_docs): $(xsldoc_xsls) xsldoc.awk xsldoc-fill.xsl | ||
14 | $(GDU_AWK) -f "$(srcdir)/xsldoc.awk" "$(filter %/$(basename $(notdir $@)).xsl,$(xsldoc_xsls))" \ | ||
15 | - | xsltproc -o "$@" \ | ||
16 | + | xsltproc -nonet -o "$@" \ | ||
17 | --stringparam basename "$(basename $(notdir $@))" \ | ||
18 | --stringparam xsl_file "$(filter %/$(basename $(notdir $@)).xsl,$(xsldoc_xsls))" \ | ||
19 | "$(srcdir)/xsldoc-fill.xsl" - | ||
20 | |||
21 | $(xsldoc_xmls): xsldoc-docbook.xsl | ||
22 | $(xsldoc_xmls): C/%.xml : C/%.xsldoc | ||
23 | - xsltproc -o "$@" \ | ||
24 | + xsltproc -nonet -o "$@" \ | ||
25 | --stringparam basename "$(basename $(notdir $@))" \ | ||
26 | --stringparam xsl_file "$(filter %/$(basename $(notdir $@)).xsl,$(xsldoc_xsls))" \ | ||
27 | "$(srcdir)/xsldoc-docbook.xsl" "$<" | ||
28 | @@ -75,4 +75,4 @@ | ||
29 | DOC_MODULE = gnome-doc-xslt | ||
30 | DOC_INCLUDES = legal.xml translating.xml $(patsubst %,%.xml,$(xsldoc_base)) | ||
31 | |||
32 | -DOC_LINGUAS = de | ||
33 | \ No newline at end of file | ||
34 | +DOC_LINGUAS = de | ||