patch-Makefile_in 1015 B

12345678910111213141516171819202122232425
  1. $OpenBSD: patch-Makefile_in,v 1.3 2016/10/13 15:39:32 jca Exp $
  2. - don't compress man and info pages.
  3. --- Makefile.in.orig Wed Jun 29 11:49:06 2016
  4. +++ Makefile.in Tue Sep 27 15:22:19 2016
  5. @@ -664,7 +664,7 @@ install-info: info
  6. for f in `ls $$elt $$elt-[1-9] $$elt-[1-9][0-9] 2>/dev/null`; do \
  7. (cd "$${thisdir}"; \
  8. ${INSTALL_DATA} ${srcdir}/info/$$f "$(DESTDIR)${infodir}/$$f"); \
  9. - [ -n "${GZIP_PROG}" ] || continue ; \
  10. + [ -n "" ] || continue ; \
  11. rm -f "$(DESTDIR)${infodir}/$$f.gz"; \
  12. ${GZIP_PROG} -9n "$(DESTDIR)${infodir}/$$f"; \
  13. done; \
  14. @@ -688,7 +688,7 @@ install-man:
  15. dest=`echo "$${page}" | sed -e 's/\.1$$//' -e '$(TRANSFORM)'`.1; \
  16. (cd "$${thisdir}"; \
  17. ${INSTALL_DATA} ${mansrcdir}/$${page} "$(DESTDIR)${man1dir}/$${dest}"); \
  18. - [ -n "${GZIP_PROG}" ] || continue ; \
  19. + [ -n "" ] || continue ; \
  20. rm -f "$(DESTDIR)${man1dir}/$${dest}.gz"; \
  21. ${GZIP_PROG} -9n "$(DESTDIR)${man1dir}/$${dest}" || true; \
  22. done