summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeon Timmermans <fawaka@gmail.com>2016-03-25 18:01:48 +0100
committerRicardo Signes <rjbs@cpan.org>2016-04-23 12:09:38 +0100
commit2163b7036ce4c8832734a6bfb49ce6e7ca0f3ec0 (patch)
treed120d9e056726bfb03d1a8213038d5eafe8c38b5
parent8c13e94604b1db7743f11c459b95a61238963cc8 (diff)
downloadperl-2163b7036ce4c8832734a6bfb49ce6e7ca0f3ec0.tar.gz
Allow Encode to be built on static perls
Previously there were build failures because cp1252 was defined both in the default set of encodings an in the byte set.
-rw-r--r--cpan/Encode/Byte/Makefile.PL2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpan/Encode/Byte/Makefile.PL b/cpan/Encode/Byte/Makefile.PL
index b8d09e6590..6824bbbd9b 100644
--- a/cpan/Encode/Byte/Makefile.PL
+++ b/cpan/Encode/Byte/Makefile.PL
@@ -39,7 +39,7 @@ my %tables = (
my %not_here =
map {$_ => 1}
(
- '8859-1.ucm', # default
+ '8859-1.ucm', 'cp1252.ucm', # default
qw(cp037.ucm cp1026.ucm cp1047.ucm cp500.ucm cp875.ucm), # EBCDIC
qw(cp932.ucm cp936.ucm cp949.ucm cp950.ucm), # CJK
);