summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Watts <robin.watts@artifex.com>2013-02-28 10:57:24 +0000
committerRobin Watts <robin.watts@artifex.com>2013-02-28 10:58:02 +0000
commit092461c105210cfc652984cd96e6c88aec545461 (patch)
treee30e89a08ce04ad310a9113056cd57daed58ea8f
parent61c1f80d36bf1d946ce26d39f9afb99897fc9923 (diff)
downloadmupdf-092461c105210cfc652984cd96e6c88aec545461.tar.xz
Bug 693595: Fix typo in Makefile resulting in mutool not being installed.
In the MUBUSY -> MUTOOL rename, one was missed. Thanks to Michael Weber.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0371def6..6169df2a 100644
--- a/Makefile
+++ b/Makefile
@@ -212,7 +212,7 @@ install: $(FITZ_LIB) $(MUVIEW) $(MUDRAW) $(MUTOOL)
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 $(MUVIEW) $(MUDRAW) $(MUBUSY) $(DESTDIR)$(bindir)
+ install $(MUVIEW) $(MUDRAW) $(MUTOOL) $(DESTDIR)$(bindir)
install $(wildcard apps/man/*.1) $(DESTDIR)$(mandir)/man1
# --- Clean and Default ---