summaryrefslogtreecommitdiffstats
path: root/patches/cgicc-3.2.7/generic/suppress-doc-install.diff
blob: e37784325f585a780f7ba7ea4dccb24a267efde3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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 \