From: Jim Meyering Date: Mon, 5 May 2008 20:44:57 +0000 (+0200) Subject: help2man: avoid failure with Debian unstable's Perl 5.10.0 X-Git-Tag: v6.12~71 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0b66c5776e002c7e9df2925278c956196b3c1479;p=thirdparty%2Fcoreutils.git 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. --- diff --git a/man/help2man b/man/help2man index 1bc12cf5af..652fe9c3de 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';