summaryrefslogtreecommitdiff
path: root/help2man.PL
diff options
context:
space:
mode:
authorBrendan O'Dea <bod@debian.org>2015-01-31 00:25:10 +1100
committerBrendan O'Dea <bod@debian.org>2015-01-31 00:25:10 +1100
commiteb1d228ba56861304028fd17ba541dc84d983a9e (patch)
treeac9f5f2102e9fa935e25f8cd6e8813cc350ee472 /help2man.PL
parentb2a638a414fd69960254be6d6c4004be93cc52cf (diff)
downloadhelp2man-eb1d228ba56861304028fd17ba541dc84d983a9e.tar.gz
Fix a problem with LC_ALL being imported twice
Diffstat (limited to 'help2man.PL')
-rwxr-xr-xhelp2man.PL4
1 files changed, 2 insertions, 2 deletions
diff --git a/help2man.PL b/help2man.PL
index a667a17..36af7c4 100755
--- a/help2man.PL
+++ b/help2man.PL
@@ -16,7 +16,7 @@ use 5.008;
use Config;
use Getopt::Long;
-my ($program, $version) = ('help2man', '1.46.4');
+my ($program, $version) = ('help2man', '1.46.5');
my %opts;
die "Usage: $0 [--quiet] [--stdout] [--with-gettext] [--name] [--version]\n"
@@ -89,7 +89,7 @@ use POSIX qw(strftime setlocale LC_ALL);
!NO!SUBS!
print OUT <<'!NO!SUBS!' if $opts{'with-gettext'};
-use Locale::gettext;
+use Locale::gettext qw(gettext);
use Encode qw(decode encode);
use I18N::Langinfo qw(langinfo CODESET);
!NO!SUBS!