mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-03-14 01:17:27 -07:00
- EAPI7 - Fix DEPEND/BDEPEND/etc - Remove empty/unused variable assignments - Parallel tests - Migrate .-in-inc "sed" to a "patch" - Add possible fix patch for bug #627058 Bug: https://bugs.gentoo.org/627058 Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Kent Fredric <kentnl@gentoo.org>
25 lines
519 B
Diff
25 lines
519 B
Diff
From 76ef0a65ae8b93da138c179e7e0c2995113825d9 Mon Sep 17 00:00:00 2001
|
|
From: Kent Fredric <kentnl@gentoo.org>
|
|
Date: Thu, 2 Jul 2020 20:11:50 +1200
|
|
Subject: Include '.' in @INC on perl 5.26+
|
|
|
|
---
|
|
Makefile.PL | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/Makefile.PL b/Makefile.PL
|
|
index 95eb265..90f6da8 100644
|
|
--- a/Makefile.PL
|
|
+++ b/Makefile.PL
|
|
@@ -8,6 +8,7 @@
|
|
##
|
|
## $Id: Makefile.PL,v 1.12 2001/05/30 13:10:32 vipul Exp $
|
|
|
|
+use lib '.';
|
|
use inc::Module::Install;
|
|
|
|
name 'Crypt-RSA';
|
|
--
|
|
2.27.0
|
|
|