Commit 197af341dee6a26983c1c4296e757aa36d5a58c3
1 parent
29f58303
Use ./install-sh instead of install -c
Showing
2 changed files
with
9 additions
and
3 deletions
ChangeLog
| 1 | +2013-03-07 Jay Berkenbilt <ejb@ql.org> | ||
| 2 | + | ||
| 3 | + * Use ./install-sh (already present) instead of "install -c" to | ||
| 4 | + install executables to fix portability problems against different | ||
| 5 | + UNIX variants. | ||
| 6 | + | ||
| 1 | 2013-03-03 Jay Berkenbilt <ejb@ql.org> | 7 | 2013-03-03 Jay Berkenbilt <ejb@ql.org> |
| 2 | 8 | ||
| 3 | * Add protected terminateParsing method to | 9 | * Add protected terminateParsing method to |
make/libtool.mk
| @@ -112,14 +112,14 @@ install: all | @@ -112,14 +112,14 @@ install: all | ||
| 112 | ./mkinstalldirs $(DESTDIR)$(includedir)/qpdf | 112 | ./mkinstalldirs $(DESTDIR)$(includedir)/qpdf |
| 113 | ./mkinstalldirs $(DESTDIR)$(docdir) | 113 | ./mkinstalldirs $(DESTDIR)$(docdir) |
| 114 | ./mkinstalldirs $(DESTDIR)$(mandir)/man1 | 114 | ./mkinstalldirs $(DESTDIR)$(mandir)/man1 |
| 115 | - $(LIBTOOL) --mode=install install -c \ | 115 | + $(LIBTOOL) --mode=install ./install-sh \ |
| 116 | libqpdf/$(OUTPUT_DIR)/libqpdf.la \ | 116 | libqpdf/$(OUTPUT_DIR)/libqpdf.la \ |
| 117 | $(DESTDIR)$(libdir)/libqpdf.la | 117 | $(DESTDIR)$(libdir)/libqpdf.la |
| 118 | $(LIBTOOL) --finish $(DESTDIR)$(libdir) | 118 | $(LIBTOOL) --finish $(DESTDIR)$(libdir) |
| 119 | - $(LIBTOOL) --mode=install install -c \ | 119 | + $(LIBTOOL) --mode=install ./install-sh \ |
| 120 | qpdf/$(OUTPUT_DIR)/qpdf \ | 120 | qpdf/$(OUTPUT_DIR)/qpdf \ |
| 121 | $(DESTDIR)$(bindir)/qpdf | 121 | $(DESTDIR)$(bindir)/qpdf |
| 122 | - $(LIBTOOL) --mode=install install -c \ | 122 | + $(LIBTOOL) --mode=install ./install-sh \ |
| 123 | zlib-flate/$(OUTPUT_DIR)/zlib-flate \ | 123 | zlib-flate/$(OUTPUT_DIR)/zlib-flate \ |
| 124 | $(DESTDIR)$(bindir)/zlib-flate | 124 | $(DESTDIR)$(bindir)/zlib-flate |
| 125 | cp qpdf/fix-qdf $(DESTDIR)$(bindir) | 125 | cp qpdf/fix-qdf $(DESTDIR)$(bindir) |