Codebase list frei0r / 1137484
Fixed building of docs IOhannes m zmölnig 12 years ago
2 changed file(s) with 33 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 Description: build doxygen documentation during built
1 Author: IOhannes m zmölnig <umlaeute@debian.org>
2 Last-Update: 2014-05-20
3 ---
4 This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
5 --- frei0r.orig/Makefile.am
6 +++ frei0r/Makefile.am
7 @@ -10,7 +10,7 @@
8
9 ACLOCAL_AMFLAGS= -I m4
10
11 -SUBDIRS=src include
12 +SUBDIRS=src include doc
13
14 pkgconfigdir = $(libdir)/pkgconfig
15 pkgconfig_DATA = frei0r.pc
16 --- frei0r.orig/doc/Makefile.am
17 +++ frei0r/doc/Makefile.am
18 @@ -22,10 +22,10 @@
19 -cp -ra html $(distdir)/doc/
20
21 install-data:
22 - install -c -m 644 -d $(htmldocs_DATA) $(htmldocsdir)
23 + install -c -m 644 -d $(htmldocs_DATA) $(DESTDIR)$(htmldocsdir)
24
25 # Modify the install hook, so we can install directories
26 install-htmldocsDATA:
27 - mkdir -p $(htmldocsdir)
28 - cp -r ./html $(htmldocsdir)/
29 + mkdir -p $(DESTDIR)$(htmldocsdir)
30 + cp -r ./html $(DESTDIR)$(htmldocsdir)/
31
55 020130415~b1faa09.patch
66 020140427~fc84121.patch
77 1-AM_INIT_AUTOMAKE.patch
8 1-build-doc.patch