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