diff options
Diffstat (limited to 'sci-chemistry/psi/files/3.4.0-man_paths.patch')
-rw-r--r-- | sci-chemistry/psi/files/3.4.0-man_paths.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/sci-chemistry/psi/files/3.4.0-man_paths.patch b/sci-chemistry/psi/files/3.4.0-man_paths.patch new file mode 100644 index 000000000000..02cced160847 --- /dev/null +++ b/sci-chemistry/psi/files/3.4.0-man_paths.patch @@ -0,0 +1,25 @@ +Fix man paths + +http://bugs.gentoo.org/show_bug.cgi?id=326185 + +--- src/bin/nonbonded/Makefile.in ++++ src/bin/nonbonded/Makefile.in +@@ -19,5 +19,5 @@ + endif + + install_man:: nonbonded.1 +- $(MKDIRS) $(mandir)/man1 +- $(INSTALL_INCLUDE) $^ $(mandir)/man1 ++ $(MKDIRS) $(DESTDIR)$(mandir)/man1 ++ $(INSTALL_INCLUDE) $^ $(DESTDIR)$(mandir)/man1 +--- src/bin/intder/Makefile.in ++++ src/bin/intder/Makefile.in +@@ -21,6 +21,6 @@ + endif + + install_man:: intder.1 +- $(MKDIRS) $(mandir)/man1 +- $(INSTALL_INCLUDE) $^ $(mandir)/man1 ++ $(MKDIRS) $(DESTDIR)$(mandir)/man1 ++ $(INSTALL_INCLUDE) $^ $(DESTDIR)$(mandir)/man1 + |