]> git.donarmstrong.com Git - debhelper.git/commitdiff
r1798: * dh_installmanpages: Remove X11 man page special case; X man pages are ok
authorjoey <joey>
Thu, 13 Oct 2005 03:14:30 +0000 (03:14 +0000)
committerjoey <joey>
Thu, 13 Oct 2005 03:14:30 +0000 (03:14 +0000)
  in standard man dirs.

debian/changelog
dh_installmanpages

index e1f7066e487c41f059d6aae4ccf40b4348f8f66e..053242b1ba0b83a1ef7b8e609fe9e43ccafd9f1d 100644 (file)
@@ -1,3 +1,10 @@
+debhelper (4.9.14) UNRELEASED; urgency=low
+
+  * dh_installmanpages: Remove X11 man page special case; X man pages are ok
+    in standard man dirs.
+
+ -- Joey Hess <joeyh@debian.org>  Wed, 12 Oct 2005 23:13:20 -0400
+
 debhelper (4.9.13) unstable; urgency=low
 
   * dh_strip: Man page typo fix. Closes: #332747
index 93c841548273782012c5497421681e01b43e2d54..2257517b0df0efb151cdb92ee85d2b93a8a8b1d6 100755 (executable)
@@ -156,10 +156,6 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
                
                if ($install) {
                        my $extdir="share";
-                       # Handle X man pages specially.
-                       if ($basename=~/x$/) {
-                               $extdir="X11R6";
-                       }
                        
                        my ($section)=$basename=~m/.*\.([1-9])/;