summaryrefslogtreecommitdiffstats
path: root/patches/cgicc-3.2.7/suppress-doc-install.diff
diff options
context:
space:
mode:
Diffstat (limited to 'patches/cgicc-3.2.7/suppress-doc-install.diff')
-rw-r--r--patches/cgicc-3.2.7/suppress-doc-install.diff47
1 files changed, 47 insertions, 0 deletions
diff --git a/patches/cgicc-3.2.7/suppress-doc-install.diff b/patches/cgicc-3.2.7/suppress-doc-install.diff
new file mode 100644
index 000000000..e37784325
--- /dev/null
+++ b/patches/cgicc-3.2.7/suppress-doc-install.diff
@@ -0,0 +1,47 @@
+From: Juergen Beisert <j.beisert@pengutronix.de>
+Subject: [patch] Remove documentation failure
+
+It seems the build system does a silent doxygen run, when doxygen is present
+on the host. And even if not, it tries to install the (not generated)
+documentation.
+
+This is a hack to make it build on all host. Running Doxygen should be
+better decided in the configure step.
+
+Signed-off-by: Juergen Beisert <j.beisert@pengutronix.de>
+
+---
+ Makefile.in | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+Index: cgicc-3.2.7/Makefile.in
+===================================================================
+--- cgicc-3.2.7.orig/Makefile.in
++++ cgicc-3.2.7/Makefile.in
+@@ -69,7 +69,7 @@ aclocalDATA_INSTALL = $(INSTALL_DATA)
+ DATA = $(aclocal_DATA)
+ ETAGS = etags
+ CTAGS = ctags
+-DIST_SUBDIRS = cgicc doc support demo contrib
++DIST_SUBDIRS = cgicc support demo contrib
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+ distdir = $(PACKAGE)-$(VERSION)
+ top_distdir = $(distdir)
+@@ -194,7 +194,7 @@ AUTOMAKE_OPTIONS = check-news dist-bzip2
+ @DEMOS_FALSE@DEMO =
+ @DEMOS_TRUE@DEMO = demo contrib
+ ACLOCAL_AMFLAGS =
+-SUBDIRS = cgicc doc support $(DEMO)
++SUBDIRS = cgicc support $(DEMO)
+ CLEANFILES = *~
+ MAINTAINERCLEANFILES = aclocal.m4 cgicc-*.tar.*
+ EXTRA_DIST = BUGS README.WIN COPYING.DOC example win
+@@ -410,7 +410,7 @@ distdir: $(DISTFILES)
+ esac
+ $(am__remove_distdir)
+ mkdir $(distdir)
+- $(mkdir_p) $(distdir)/cgicc $(distdir)/doc $(distdir)/support
++ $(mkdir_p) $(distdir)/cgicc $(distdir)/support
+ @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
+ list='$(DISTFILES)'; for file in $$list; do \