summaryrefslogtreecommitdiff
blob: c85d8a362fbdd8dc1e8e1b2af911eed13079f5e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
From 929dc970f0f6744e0124243840de287b48284275 Mon Sep 17 00:00:00 2001
From: Kent Fredric <kentnl@gentoo.org>
Date: Sat, 21 Oct 2017 15:21:14 +1300
Subject: Fix for '.' in @INC on 5.26+

Bug: https://rt.cpan.org/Ticket/Display.html?id=121201
Bug: https://bugs.gentoo.org/615830
---
 Makefile.PL | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/Makefile.PL b/Makefile.PL
index 80d276b..8b77462 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -1,7 +1,6 @@
 #!/usr/bin/perl
-
+use lib '.', 'lib';
 use inc::Module::Install;
-use lib 'lib';
 
 name            ('ExtUtils-AutoInstall');
 abstract        ('Automatic install of dependencies via CPAN');
-- 
2.14.2