bfb6af
From 04664fb41a3eaa5bc688c4095107486f8c6d2f4c Mon Sep 17 00:00:00 2001
bfb6af
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
bfb6af
Date: Mon, 27 Oct 2014 16:55:18 +0100
bfb6af
Subject: [PATCH] Unbundle Encode::Locale
bfb6af
MIME-Version: 1.0
bfb6af
Content-Type: text/plain; charset=UTF-8
bfb6af
Content-Transfer-Encoding: 8bit
bfb6af
bfb6af
Signed-off-by: Petr Písař <ppisar@redhat.com>
bfb6af
---
bfb6af
 lib/ExtUtils/MakeMaker.pm | 6 +++---
bfb6af
 1 file changed, 3 insertions(+), 3 deletions(-)
bfb6af
bfb6af
diff --git a/lib/ExtUtils/MakeMaker.pm b/lib/ExtUtils/MakeMaker.pm
bfb6af
index 04ec5a3..759c079 100644
bfb6af
--- a/lib/ExtUtils/MakeMaker.pm
bfb6af
+++ b/lib/ExtUtils/MakeMaker.pm
bfb6af
@@ -10,8 +10,8 @@ use ExtUtils::MakeMaker::Config;
bfb6af
 use version; # ensure we always have version.pm
bfb6af
 use Carp;
bfb6af
 use File::Path;
bfb6af
-my $CAN_DECODE = eval { require ExtUtils::MakeMaker::Locale; }; # 2 birds, 1 stone
bfb6af
-eval { ExtUtils::MakeMaker::Locale::reinit('UTF-8') }
bfb6af
+my $CAN_DECODE = eval { require Encode::Locale; }; # 2 birds, 1 stone
bfb6af
+eval { Encode::Locale::reinit('UTF-8') }
bfb6af
   if $CAN_DECODE and Encode::find_encoding('locale')->name eq 'ascii';
bfb6af
 
bfb6af
 our $Verbose = 0;       # exported
bfb6af
-- 
bfb6af
1.9.3
bfb6af