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