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 | 7 | 2013-03-03 Jay Berkenbilt <ejb@ql.org> |
| 2 | 8 | |
| 3 | 9 | * Add protected terminateParsing method to | ... | ... |
make/libtool.mk
| ... | ... | @@ -112,14 +112,14 @@ install: all |
| 112 | 112 | ./mkinstalldirs $(DESTDIR)$(includedir)/qpdf |
| 113 | 113 | ./mkinstalldirs $(DESTDIR)$(docdir) |
| 114 | 114 | ./mkinstalldirs $(DESTDIR)$(mandir)/man1 |
| 115 | - $(LIBTOOL) --mode=install install -c \ | |
| 115 | + $(LIBTOOL) --mode=install ./install-sh \ | |
| 116 | 116 | libqpdf/$(OUTPUT_DIR)/libqpdf.la \ |
| 117 | 117 | $(DESTDIR)$(libdir)/libqpdf.la |
| 118 | 118 | $(LIBTOOL) --finish $(DESTDIR)$(libdir) |
| 119 | - $(LIBTOOL) --mode=install install -c \ | |
| 119 | + $(LIBTOOL) --mode=install ./install-sh \ | |
| 120 | 120 | qpdf/$(OUTPUT_DIR)/qpdf \ |
| 121 | 121 | $(DESTDIR)$(bindir)/qpdf |
| 122 | - $(LIBTOOL) --mode=install install -c \ | |
| 122 | + $(LIBTOOL) --mode=install ./install-sh \ | |
| 123 | 123 | zlib-flate/$(OUTPUT_DIR)/zlib-flate \ |
| 124 | 124 | $(DESTDIR)$(bindir)/zlib-flate |
| 125 | 125 | cp qpdf/fix-qdf $(DESTDIR)$(bindir) | ... | ... |