aboutsummaryrefslogtreecommitdiffstats
path: root/community/perl-unicode-collate/Unicode-Collate-1.19-Fixes-for-removal-dot-from-INC.patch
diff options
context:
space:
mode:
authorLeo <thinkabit.ukim@gmail.com>2020-01-29 00:19:19 +0100
committerLeo <thinkabit.ukim@gmail.com>2020-01-29 00:19:19 +0100
commit7b666d29c84d5cad788815a1c9133a5c38c5f410 (patch)
tree7e0e9f567ea66bc0c2629499454d07545f6d674b /community/perl-unicode-collate/Unicode-Collate-1.19-Fixes-for-removal-dot-from-INC.patch
parentc10f2d9b183c51fddfcb61024d01a5bd21197694 (diff)
downloadaports-7b666d29c84d5cad788815a1c9133a5c38c5f410.tar.bz2
aports-7b666d29c84d5cad788815a1c9133a5c38c5f410.tar.xz
Remove stale patches in community/
Diffstat (limited to 'community/perl-unicode-collate/Unicode-Collate-1.19-Fixes-for-removal-dot-from-INC.patch')
-rw-r--r--community/perl-unicode-collate/Unicode-Collate-1.19-Fixes-for-removal-dot-from-INC.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/community/perl-unicode-collate/Unicode-Collate-1.19-Fixes-for-removal-dot-from-INC.patch b/community/perl-unicode-collate/Unicode-Collate-1.19-Fixes-for-removal-dot-from-INC.patch
deleted file mode 100644
index aae5e3bb6e..0000000000
--- a/community/perl-unicode-collate/Unicode-Collate-1.19-Fixes-for-removal-dot-from-INC.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff -up Unicode-Collate-1.19/mklocale.orig Unicode-Collate-1.19/mklocale
---- Unicode-Collate-1.19/mklocale.orig 2017-05-11 14:46:13.491501304 +0200
-+++ Unicode-Collate-1.19/mklocale 2017-05-11 14:48:21.829764058 +0200
-@@ -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+)/) {
-diff -up Unicode-Collate-1.19/Makefile.PL.orig Unicode-Collate-1.19/Makefile.PL
---- Unicode-Collate-1.19/Makefile.PL.orig 2017-05-11 14:57:57.113506081 +0200
-+++ Unicode-Collate-1.19/Makefile.PL 2017-05-11 14:57:25.895682439 +0200
-@@ -6,7 +6,7 @@ my $clean = {};
- if (-f "Collate.xs") {
- print "Making header files for XS...\n";
-
-- do 'mkheader' or die $@ || "mkheader: $!";
-+ do './mkheader' or die $@ || "mkheader: $!";
-
- $clean = { FILES => 'ucatbl.h' };
- }