1Disable doxygen usage 2 3In order to avoid a dependency on doxygen on the build machine, this 4patch adjusts the main Makefile to not build and install the 5documentation. 6 7[Vincent: tweak patch for 1.1.1 version] 8 9Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> 10Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> 11 12diff -rup a/Makefile b/Makefile 13--- a/Makefile 2017-05-24 05:23:57.000000000 +0100 14+++ b/Makefile 2017-05-25 10:35:20.781747053 +0100 15@@ -11,14 +11,12 @@ export MANDIR ?= $(PREFIX)/share/man 16 all: 17 $(MAKE) -C src 18 $(MAKE) -C utils 19- $(MAKE) -C doxygen 20 $(MAKE) -C examples 21 22 .PHONY: clean 23 clean: 24 $(MAKE) -C src clean 25 $(MAKE) -C utils clean 26- $(MAKE) -C doxygen clean 27 $(MAKE) -C examples clean 28 29 .PHONY: install 30@@ -30,5 +28,4 @@ install: 31 install include/tinyalsa/version.h $(DESTDIR)$(INCDIR)/ 32 $(MAKE) -C src install 33 $(MAKE) -C utils install 34- $(MAKE) -C doxygen install 35 36