75dc59
From 1538096643d1197db700fe16969a47ecddfaac99 Mon Sep 17 00:00:00 2001
75dc59
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
75dc59
Date: Fri, 3 Nov 2017 09:38:44 +0100
75dc59
Subject: [PATCH] Fixes for removal dot from INC
75dc59
MIME-Version: 1.0
75dc59
Content-Type: text/plain; charset=UTF-8
75dc59
Content-Transfer-Encoding: 8bit
75dc59
75dc59
CPAN RT#121664
75dc59
75dc59
Signed-off-by: Petr Písař <ppisar@redhat.com>
75dc59
---
75dc59
 mklocale | 2 +-
75dc59
 1 file changed, 1 insertion(+), 1 deletion(-)
75dc59
75dc59
diff --git a/mklocale b/mklocale
75dc59
index a1f7092..1e607be 100644
75dc59
--- a/mklocale
75dc59
+++ b/mklocale
75dc59
@@ -546,7 +546,7 @@ for my $txt (@txts) {
75dc59
 	    s/\s*\z/.pm/;
75dc59
 	    my $f = File::Spec->catfile($CUR_DIR, split /::/, $_);
75dc59
 	    $f = 'Korean.pm' if /::Korean\.pm/; # using the newer one
75dc59
-	    require $f;
75dc59
+	    require "./$f";
75dc59
 	    next;
75dc59
 	}
75dc59
 	if (/^(alternate)\s+(\S+)/) {
75dc59
-- 
75dc59
2.13.6
75dc59