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