summaryrefslogtreecommitdiffstats
path: root/testing/mupdf/destdir.patch
blob: b90083b7e32e95a13f88e5066e9656f118aa53e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--- mupdf-1.0-source/Makefile.orig
+++ mupdf-1.0-source/Makefile
@@ -168,11 +168,11 @@
 mandir ?= $(prefix)/share/man
 
 install: $(FITZ_LIB) $(MU_APPS) $(MUPDF)
-	install -d $(bindir) $(libdir) $(incdir) $(mandir)/man1
-	install $(FITZ_LIB) $(libdir)
-	install fitz/memento.h fitz/fitz.h pdf/mupdf.h xps/muxps.h cbz/mucbz.h $(incdir)
-	install $(MU_APPS) $(MUPDF) $(bindir)
-	install $(wildcard apps/man/*.1) $(mandir)/man1
+	install -d $(DESTDIR)/$(bindir) $(DESTDIR)/$(libdir) $(DESTDIR)/$(incdir) $(DESTDIR)/$(mandir)/man1
+	install $(FITZ_LIB) $(DESTDIR)/$(libdir)
+	install fitz/memento.h fitz/fitz.h pdf/mupdf.h xps/muxps.h cbz/mucbz.h $(DESTDIR)/$(incdir)
+	install $(MU_APPS) $(MUPDF) $(DESTDIR)/$(bindir)
+	install $(wildcard apps/man/*.1) $(DESTDIR)/$(mandir)/man1
 
 # --- Clean and Default ---