package/nbd: add option for the trdump utility
[buildroot-gz.git] / package / tinyalsa / 0001-disable-doxygen-usage.patch
blob9c867a8fecc4d69d8097244338a51b25467f61d3
1 Disable doxygen usage
3 In order to avoid a dependency on doxygen on the build machine, this
4 patch adjusts the main Makefile to not build and install the
5 documentation.
7 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
9 Index: b/Makefile
10 ===================================================================
11 --- a/Makefile
12 +++ b/Makefile
13 @@ -13,13 +13,11 @@
14 all:
15 $(MAKE) -C src
16 $(MAKE) -C utils
17 - $(MAKE) -C doxygen
19 .PHONY: clean
20 clean:
21 $(MAKE) -C src clean
22 $(MAKE) -C utils clean
23 - $(MAKE) -C doxygen clean
25 .PHONY: install
26 install:
27 @@ -27,5 +25,3 @@
28 cp -Ru include/tinyalsa $(DESTDIR)$(INCDIR)/
29 $(MAKE) -C src install
30 $(MAKE) -C utils install
31 - $(MAKE) -C doxygen install