diff options
author | Scott Garman <scott.a.garman@intel.com> | 2011-02-23 19:32:50 -0800 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2011-03-01 11:46:37 +0000 |
commit | 9612a9efa7e3a2807908c567d6ae9dbcbcf13f56 (patch) | |
tree | 2f981740ad58769e8b0ac2166ca390d4708d2421 /meta/recipes-gnome/gtk+/gtk+-2.22.1 | |
parent | d0c42255619992392ca98fb871f8781bb2691543 (diff) | |
download | openembedded-core-9612a9efa7e3a2807908c567d6ae9dbcbcf13f56.tar.gz openembedded-core-9612a9efa7e3a2807908c567d6ae9dbcbcf13f56.tar.bz2 openembedded-core-9612a9efa7e3a2807908c567d6ae9dbcbcf13f56.zip |
gtk+: disable build of faq and tutorial docs
Joshua Lock noted that these problematic doc builds have been removed
upstream, and they are really superfluous for embedded builds.
This fixes [BUGID #741]
Signed-off-by: Scott Garman <scott.a.garman@intel.com>
Diffstat (limited to 'meta/recipes-gnome/gtk+/gtk+-2.22.1')
-rw-r--r-- | meta/recipes-gnome/gtk+/gtk+-2.22.1/doc-fixes.patch | 44 |
1 files changed, 15 insertions, 29 deletions
diff --git a/meta/recipes-gnome/gtk+/gtk+-2.22.1/doc-fixes.patch b/meta/recipes-gnome/gtk+/gtk+-2.22.1/doc-fixes.patch index 67fd29a897..c2e3ae728d 100644 --- a/meta/recipes-gnome/gtk+/gtk+-2.22.1/doc-fixes.patch +++ b/meta/recipes-gnome/gtk+/gtk+-2.22.1/doc-fixes.patch @@ -1,33 +1,19 @@ -This fixes the following build errors with the gtk+ faq and tutorial -documentation: +There are issues building the gtk+ tutorial and faq documentation. +Since they were removed in gtk+ upstream and are superfluous in +embedded applications, just don't build them. -mv: cannot stat `gtk-faq': No such file or directory -mv: cannot stat `gtk-tut': No such file or directory +Thanks to Joshua Lock for suggesting this approach. Signed-off-by: Scott Garman <scott.a.garman@intel.com> -diff -urN gtk+-2.22.1.orig//docs/faq/Makefile.am gtk+-2.22.1/docs/faq/Makefile.am ---- gtk+-2.22.1.orig//docs/faq/Makefile.am 2010-11-15 04:13:09.000000000 -0800 -+++ gtk+-2.22.1/docs/faq/Makefile.am 2011-02-17 13:16:30.603214103 -0800 -@@ -9,7 +9,8 @@ - (cd $(srcdir); \ - db2html gtk-faq.sgml; \ - test -d html && rm -r html; \ -- mv gtk-faq html); \ -+ mkdir html; \ -+ mv *.html html); \ - fi +diff -urN gtk+-2.22.1.orig/docs/Makefile.am gtk+-2.22.1/docs/Makefile.am +--- gtk+-2.22.1.orig/docs/Makefile.am 2010-11-15 04:13:09.000000000 -0800 ++++ gtk+-2.22.1/docs/Makefile.am 2011-02-23 19:25:16.914815097 -0800 +@@ -1,7 +1,7 @@ + ## Process this file with automake to produce Makefile.in + include $(top_srcdir)/Makefile.decl - pdf: -diff -urN gtk+-2.22.1.orig//docs/tutorial/Makefile.am gtk+-2.22.1/docs/tutorial/Makefile.am ---- gtk+-2.22.1.orig//docs/tutorial/Makefile.am 2010-11-15 04:13:09.000000000 -0800 -+++ gtk+-2.22.1/docs/tutorial/Makefile.am 2011-02-17 13:15:40.110369180 -0800 -@@ -42,7 +42,8 @@ - (cd $(srcdir); \ - db2html gtk-tut.sgml; \ - test -d html && rm -r html; \ -- mv gtk-tut html; \ -+ mkdir html; \ -+ mv *.html html; \ - mkdir html/images; \ - cp images/*.png html/images); \ - fi +-SUBDIRS = tutorial faq reference tools ++SUBDIRS = reference tools + + EXTRA_DIST += \ + defsformat.txt \ |