Bug 693595 - git HEAD fails to install mutool
Summary: git HEAD fails to install mutool
Status: RESOLVED FIXED
Alias: None
Product: MuPDF
Classification: Unclassified
Component: mupdf (show other bugs)
Version: master
Hardware: PC Linux
: P4 normal
Assignee: Tor Andersson
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-01-28 14:19 UTC by Michael Weber
Modified: 2013-02-28 14:08 UTC (History)
1 user (show)

See Also:
Customer:
Word Size: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Michael Weber 2013-01-28 14:19:46 UTC
build/debug/mutool gets built but it's not installed

diff --git a/Makefile b/Makefile
index 0371def..6169df2 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 ---
Comment 1 Robin Watts 2013-02-28 14:08:54 UTC
Fixed in:

commit 092461c105210cfc652984cd96e6c88aec545461
Author: Robin Watts <robin.watts@artifex.com>
Date:   Thu Feb 28 10:57:24 2013 +0000

    Bug 693595: Fix typo in Makefile resulting in mutool not being installed.

    In the MUBUSY -> MUTOOL rename, one was missed.

    Thanks to Michael Weber.

Many thanks!