respect-docdir.patch 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. From 8e484c4b0ceac8e7c37492fdf5e5b89f18451277 Mon Sep 17 00:00:00 2001
  2. From: Michael Orlitzky <michael@orlitzky.com>
  3. Date: Sat, 14 Jan 2017 01:06:48 -0500
  4. Subject: [PATCH 1/1] Use the autotools "docdir" in Documentation/Makefile.in.
  5. ---
  6. Documentation/Makefile.in | 8 ++++----
  7. 1 file changed, 4 insertions(+), 4 deletions(-)
  8. diff --git a/Documentation/Makefile.in b/Documentation/Makefile.in
  9. index 8c87281..c213c09 100644
  10. --- a/Documentation/Makefile.in
  11. +++ b/Documentation/Makefile.in
  12. @@ -325,12 +325,12 @@ uninstall-am: uninstall-info-am uninstall-local
  13. install-data-local:
  14. - $(INSTALL) -d $(DESTDIR)$(datadir)/doc/updatedd
  15. - $(INSTALL) $(srcdir)/updatedd-*.pdf $(DESTDIR)$(datadir)/doc/updatedd
  16. - $(INSTALL) $(srcdir)/updatedd-pppd-rc $(DESTDIR)$(datadir)/doc/updatedd
  17. + $(INSTALL) -d $(DESTDIR)$(docdir)
  18. + $(INSTALL) $(srcdir)/updatedd-*.pdf $(DESTDIR)$(docdir)
  19. + $(INSTALL) $(srcdir)/updatedd-pppd-rc $(DESTDIR)$(docdir)
  20. uninstall-local:
  21. - $(RM) -r $(DESTDIR)$(datadir)/doc/updatedd
  22. + $(RM) -r $(DESTDIR)$(docdir)
  23. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  24. # Otherwise a system limit (for SysV at least) may be exceeded.
  25. .NOEXPORT:
  26. --
  27. 2.10.2