diff options
author | joeyh <joeyh> | 2006-01-26 17:37:53 +0000 |
---|---|---|
committer | joeyh <joeyh> | 2006-01-26 17:37:53 +0000 |
commit | b6da226d6eb94409547d04baeb76de3a2a27111d (patch) | |
tree | a166fa2386c7a624d95e5ed5c7001bbe32cb1ff0 /dh_installman | |
parent | b794dcbc105eb083d756ce8ec255db563368bb4b (diff) | |
download | debhelper-b6da226d6eb94409547d04baeb76de3a2a27111d.tar.gz |
r1869: * dh_installman: correct mistake that broke translated man page installation5.0.21
Closes: #349995
Diffstat (limited to 'dh_installman')
-rwxr-xr-x | dh_installman | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dh_installman b/dh_installman index f054796c..6544eae4 100755 --- a/dh_installman +++ b/dh_installman @@ -143,7 +143,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { my $destdir="$tmp/usr/share/man/man$realsection/"; my $langcode; - if (! exists $dh{LANGUAGE}) { + if (! defined $dh{LANGUAGE} || ! exists $dh{LANGUAGE}) { # Translated man pages are typically specified by adding the # language code to the filename, so detect that and # redirect to appropriate directory, stripping the code. |