boxbackup-0.11.1-fix-mandir.patch 426 B

123456789101112131415
  1. Install man pages into /usr/share/man instead of /usr/man. This patch
  2. was provided by a Gentoo user in bug 515422.
  3. --- a/infrastructure/makeparcels.pl.in 2015-04-30 15:28:26.790570655 +0200
  4. +++ b/infrastructure/makeparcels.pl.in 2015-04-30 15:35:40.795699542 +0200
  5. @@ -304,7 +304,7 @@
  6. if ($type eq 'man')
  7. {
  8. $name =~ /([0-9])$/;
  9. - $dest = "man/man$1";
  10. + $dest = "share/man/man$1";
  11. $name =~ s/$/\.gz/;
  12. }