diff options
author | joeyh <joeyh> | 2006-01-24 01:42:00 +0000 |
---|---|---|
committer | joeyh <joeyh> | 2006-01-24 01:42:00 +0000 |
commit | e676533cd7e894251d935224e24abcccaf164aaa (patch) | |
tree | 1be29cc1ebc9d78de9f33456fb43c600c9f724ec /dh_installman | |
parent | 70d4ac05f6707375b6fc45c4ab53b6348447e0db (diff) | |
download | debhelper-e676533cd7e894251d935224e24abcccaf164aaa.tar.gz |
r1866: releasing version 5.0.205.0.20
Diffstat (limited to 'dh_installman')
-rwxr-xr-x | dh_installman | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/dh_installman b/dh_installman index df0ad44e..f054796c 100755 --- a/dh_installman +++ b/dh_installman @@ -148,8 +148,10 @@ foreach my $package (@{$dh{DOPACKAGES}}) { # language code to the filename, so detect that and # redirect to appropriate directory, stripping the code. ($langcode)=$basename=~m/.*\.([a-z][a-z](?:_[A-Z][A-Z])?)\.(?:[1-9]|man)/; - # Strip the language code from the instname. - $instname=~s/\.$langcode$//; + if (defined $langcode && $langcode ne '') { + # Strip the language code from the instname. + $instname=~s/\.$langcode$//; + } } elsif ($dh{LANGUAGE} ne 'C') { $langcode=$dh{LANGUAGE}; |