diff options
author | joey <joey> | 2001-01-29 21:17:56 +0000 |
---|---|---|
committer | joey <joey> | 2001-01-29 21:17:56 +0000 |
commit | a4b2194440fac0e24db7b0a5c5fa7aacf06e8645 (patch) | |
tree | 83513ed43dc039dcdf7f75e075c0f23213ea8dea /dh_installdebconf | |
parent | c89efb0352c6c4af78bc8d5ebbe7cb3846ff89f3 (diff) | |
download | debhelper-a4b2194440fac0e24db7b0a5c5fa7aacf06e8645.tar.gz |
r413: * dh_installdebconf: marge in templates with a .ll_LL extention,
they were previously ignored.
Diffstat (limited to 'dh_installdebconf')
-rwxr-xr-x | dh_installdebconf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dh_installdebconf b/dh_installdebconf index ccf3074a..f491e295 100755 --- a/dh_installdebconf +++ b/dh_installdebconf @@ -21,7 +21,7 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) { if ($templates ne '') { # Are there translated templates too? - my @trans=glob("$templates.??"); + my @trans=(glob("$templates.??"), glob("$templates.??_??")); if (@trans) { complex_doit("debconf-mergetemplate @trans $templates > $TMP/DEBIAN/templates"); chmod 0644, "$TMP/DEBIAN/templates"; |