mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-23 09:47:30 -08:00
- 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
28 lines
678 B
Diff
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
|
|
|