Commit 7e7c93951f7d0af4cd249f9bbbcf3d79ac500a7c
1 parent
a5d8783f
Do not remove libqpdf.la
Some distributions (like debian) don't want .la files to be installed, but the responsibility for doing this should like in the packaging, not in qpdf itself.
Showing
2 changed files
with
6 additions
and
1 deletions
ChangeLog
| 1 | +2013-01-31 Jay Berkenbilt <ejb@ql.org> | |
| 2 | + | |
| 3 | + * Do not remove libtool's .la file during the make install step. | |
| 4 | + Note to packagers: if your distribution wants to you remove the | |
| 5 | + .la file, you will have to do that yourself now. | |
| 6 | + | |
| 1 | 7 | 2013-01-25 Jay Berkenbilt <ejb@ql.org> |
| 2 | 8 | |
| 3 | 9 | * qpdf --check was exiting with status 0 in some rare cases even | ... | ... |
make/libtool.mk
| ... | ... | @@ -116,7 +116,6 @@ install: all |
| 116 | 116 | libqpdf/$(OUTPUT_DIR)/libqpdf.la \ |
| 117 | 117 | $(DESTDIR)$(libdir)/libqpdf.la |
| 118 | 118 | $(LIBTOOL) --finish $(DESTDIR)$(libdir) |
| 119 | - $(RM) $(DESTDIR)$(libdir)/libqpdf.la | |
| 120 | 119 | $(LIBTOOL) --mode=install install -c \ |
| 121 | 120 | qpdf/$(OUTPUT_DIR)/qpdf \ |
| 122 | 121 | $(DESTDIR)$(bindir)/qpdf | ... | ... |