gentoo/dev-perl/ExtUtils-AutoInstall/files/ExtUtils-AutoInstall-0.640.0-no-dot-inc.patch
Kent Fredric f429665758
dev-perl/ExtUtils-AutoInstall: Bump to version 0.640.0
- EAPI6
- Enable tests
- Migrate Makefile.PL hack to patch
- Patch tests to work

Upstream:
- Fix tests building properly with newer ExtUtils::MakeMaker

Package-Manager: Portage-2.3.8, Repoman-2.3.3
2017-10-21 15:46:55 +13:00

28 lines
678 B
Diff

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