aboutsummaryrefslogtreecommitdiffstats
path: root/make
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2020-01-03 04:01:10 +0100
committerJay Berkenbilt <ejb@ql.org>2020-01-14 17:53:19 +0100
commit388990f7bcddec0583fd5a84f62d4aa0eba88d39 (patch)
tree922c0ff883b7e2e1f317305d96291d0419217fd6 /make
parenta44b5a34a07b9f2905d419d5571fd53832c1f6c0 (diff)
downloadqpdf-388990f7bcddec0583fd5a84f62d4aa0eba88d39.tar.zst
Rewrite fix-qdf in C++
Diffstat (limited to 'make')
-rw-r--r--make/installwin.mk2
-rw-r--r--make/libtool.mk4
2 files changed, 4 insertions, 2 deletions
diff --git a/make/installwin.mk b/make/installwin.mk
index ff162175..3ed541ae 100644
--- a/make/installwin.mk
+++ b/make/installwin.mk
@@ -14,7 +14,7 @@ installwin: all
perl copy_dlls libqpdf/$(OUTPUT_DIR)/qpdf*.dll $(DEST)/bin $(OBJDUMP) $(WINDOWS_WORDSIZE)
cp qpdf/$(OUTPUT_DIR)/qpdf.exe $(DEST)/bin
cp zlib-flate/$(OUTPUT_DIR)/zlib-flate.exe $(DEST)/bin
- cp qpdf/fix-qdf $(DEST)/bin
+ cp qpdf/$(OUTPUT_DIR)/fix-qdf.exe $(DEST)/bin
cp include/qpdf/*.h $(DEST)/include/qpdf
cp include/qpdf/*.hh $(DEST)/include/qpdf
cp doc/stylesheet.css $(DEST)/doc
diff --git a/make/libtool.mk b/make/libtool.mk
index 0aa7b0d7..abd0aa7e 100644
--- a/make/libtool.mk
+++ b/make/libtool.mk
@@ -122,7 +122,9 @@ install: all
$(LIBTOOL) --mode=install ./install-sh \
zlib-flate/$(OUTPUT_DIR)/zlib-flate \
$(DESTDIR)$(bindir)/zlib-flate
- ./install-sh -m 0755 qpdf/fix-qdf $(DESTDIR)$(bindir)
+ $(LIBTOOL) --mode=install ./install-sh \
+ qpdf/$(OUTPUT_DIR)/fix-qdf \
+ $(DESTDIR)$(bindir)/fix-qdf
./install-sh -m 0644 include/qpdf/*.h $(DESTDIR)$(includedir)/qpdf
./install-sh -m 0644 include/qpdf/*.hh $(DESTDIR)$(includedir)/qpdf
./install-sh -m 0644 doc/stylesheet.css $(DESTDIR)$(docdir)