summaryrefslogtreecommitdiff
path: root/dh_installman
diff options
context:
space:
mode:
authorjoey <joey>2002-10-07 15:47:50 +0000
committerjoey <joey>2002-10-07 15:47:50 +0000
commitbd891332bc47237f8c2355e1890f10b9e90499e2 (patch)
tree8f77e7e721039ac63cab2f32cd1cbc2aa6c6f323 /dh_installman
parent550df8e800f56e2bab70601a043142e3b2c92074 (diff)
r556: * Depend on po-debconf, and I hope I can drop the debconf-utils dep soon.
Closes: #163569 * Removed debconf-utils build-dep. Have no idea why that was there. * dh_installman: Don't use extended section as section name for translated man pages, use only the numeric section as is done for regular man pages. Closes: #163534
Diffstat (limited to 'dh_installman')
-rwxr-xr-xdh_installman2
1 files changed, 1 insertions, 1 deletions
diff --git a/dh_installman b/dh_installman
index 402f4a94..3da08ccb 100755
--- a/dh_installman
+++ b/dh_installman
@@ -141,7 +141,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
# redirect to appropriate directory, stripping the code.
my ($langcode)=$basename=~m/.*\.([a-z][a-z](?:_[A-Z][A-Z])?)\.(?:[1-9]|man)/;
if (defined $langcode && $langcode ne '') {
- $destdir="$tmp/usr/share/man/$langcode/man$section/";
+ $destdir="$tmp/usr/share/man/$langcode/man$realsection/";
# Strip the language code from the instname.
$instname=~s/\.$langcode$//;
}