31 lines
977 B
Makefile
31 lines
977 B
Makefile
--- make/libtool.mk.orig 2019-09-03 07:26:46 UTC
|
|
+++ make/libtool.mk
|
|
@@ -1,7 +1,7 @@
|
|
# --- Required interface definitions ---
|
|
|
|
-# LIBTOOL needs bash
|
|
-SHELL=/bin/bash
|
|
+# LIBTOOL needs sh
|
|
+SHELL=/bin/sh
|
|
|
|
OBJ=o
|
|
LOBJ=lo
|
|
@@ -112,14 +112,14 @@ install: all
|
|
./mkinstalldirs -m 0755 $(DESTDIR)$(includedir)/qpdf
|
|
./mkinstalldirs -m 0755 $(DESTDIR)$(docdir)
|
|
./mkinstalldirs -m 0755 $(DESTDIR)$(mandir)/man1
|
|
- $(LIBTOOL) --mode=install ./install-sh \
|
|
+ $(LIBTOOL) --mode=install ./install-sh -s \
|
|
libqpdf/$(OUTPUT_DIR)/libqpdf.la \
|
|
$(DESTDIR)$(libdir)/libqpdf.la
|
|
$(LIBTOOL) --finish $(DESTDIR)$(libdir)
|
|
- $(LIBTOOL) --mode=install ./install-sh \
|
|
+ $(LIBTOOL) --mode=install ./install-sh -s \
|
|
qpdf/$(OUTPUT_DIR)/qpdf \
|
|
$(DESTDIR)$(bindir)/qpdf
|
|
- $(LIBTOOL) --mode=install ./install-sh \
|
|
+ $(LIBTOOL) --mode=install ./install-sh -s \
|
|
zlib-flate/$(OUTPUT_DIR)/zlib-flate \
|
|
$(DESTDIR)$(bindir)/zlib-flate
|
|
./install-sh -m 0755 qpdf/fix-qdf $(DESTDIR)$(bindir)
|