summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2008-05-05 22:44:57 +0200
committerJim Meyering <meyering@redhat.com>2008-05-05 23:46:30 +0200
commit0b66c5776e002c7e9df2925278c956196b3c1479 (patch)
tree4e4ddb6e73e8d8513a4d51be4e9b2c094b066a99
parentc64411a38a25e696edb33e49f8917012d0cd4cba (diff)
downloadcoreutils-0b66c5776e002c7e9df2925278c956196b3c1479.tar.xz
help2man: avoid failure with Debian unstable's Perl 5.10.0
Avoid failure that produced this diagnostic: Constant subroutine main::LC_ALL redefined at /.../Exporter.pm * man/help2man: Don't include LC_ALL in the "use POSIX" list, since Locale::gettext->import will get it.
-rwxr-xr-xman/help2man2
1 files changed, 1 insertions, 1 deletions
diff --git a/man/help2man b/man/help2man
index 1bc12cf5a..652fe9c3d 100755
--- a/man/help2man
+++ b/man/help2man
@@ -24,7 +24,7 @@ use 5.005;
use strict;
use Getopt::Long;
use Text::Tabs qw(expand);
-use POSIX qw(strftime setlocale LC_ALL);
+use POSIX qw(strftime setlocale);
use locale;
my $this_program = 'help2man';