mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
- EAPI6ify - Fix DESCRIPTION whitespace ( gentooqa.levelnine.at ) - Add missing deps - Prune unwanted tests - Patchify MI fix Package-Manager: Portage-2.3.29, Repoman-2.3.9
27 lines
628 B
Diff
27 lines
628 B
Diff
From e7ac2a52384a77ddcfea148903f252e740a056b3 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Andreas=20K=2E=20H=C3=BCttel?= <dilfridge@gentoo.org>
|
|
Date: Sat, 17 Jun 2017 00:49:14 +0200
|
|
Subject: Add fix for Perl 5.26 no-dot-in-inc
|
|
|
|
Bug: https://bugs.gentoo.org/615512
|
|
---
|
|
Makefile.PL | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/Makefile.PL b/Makefile.PL
|
|
index f7a745a..8f16089 100644
|
|
--- a/Makefile.PL
|
|
+++ b/Makefile.PL
|
|
@@ -1,7 +1,7 @@
|
|
# $Id$
|
|
use strict;
|
|
use warnings;
|
|
-use inc::Module::Install 0.65;
|
|
+use lib q[.]; use inc::Module::Install 0.65;
|
|
|
|
name 'Class-Data-Accessor';
|
|
license 'perl';
|
|
--
|
|
2.17.0
|
|
|