3.4.0-man_paths.patch 603 B

1234567891011121314151617181920212223242526
  1. Fix man paths
  2. http://bugs.gentoo.org/show_bug.cgi?id=326185
  3. --- src/bin/nonbonded/Makefile.in
  4. +++ src/bin/nonbonded/Makefile.in
  5. @@ -19,5 +19,5 @@
  6. endif
  7. install_man:: nonbonded.1
  8. - $(MKDIRS) $(mandir)/man1
  9. - $(INSTALL_INCLUDE) $^ $(mandir)/man1
  10. + $(MKDIRS) $(DESTDIR)$(mandir)/man1
  11. + $(INSTALL_INCLUDE) $^ $(DESTDIR)$(mandir)/man1
  12. --- src/bin/intder/Makefile.in
  13. +++ src/bin/intder/Makefile.in
  14. @@ -21,6 +21,6 @@
  15. endif
  16. install_man:: intder.1
  17. - $(MKDIRS) $(mandir)/man1
  18. - $(INSTALL_INCLUDE) $^ $(mandir)/man1
  19. + $(MKDIRS) $(DESTDIR)$(mandir)/man1
  20. + $(INSTALL_INCLUDE) $^ $(DESTDIR)$(mandir)/man1