diff options
author | Kent Fredric <kentnl@gentoo.org> | 2017-06-20 09:21:56 +1200 |
---|---|---|
committer | Kent Fredric <kentnl@gentoo.org> | 2017-06-20 09:22:18 +1200 |
commit | 8e3709c2db65807a0444a5332353a8285829d447 (patch) | |
tree | 16ae58d11c7933799f3c2f7d658619f890bee90c /dev-perl | |
parent | 42347ed300aa28f9af80cfba77d75d39721ecc70 (diff) | |
download | gentoo-8e3709c2db65807a0444a5332353a8285829d447.tar.gz gentoo-8e3709c2db65807a0444a5332353a8285829d447.tar.xz |
dev-perl/Curses-UI: Fix for '.' in @INC re bug #615110
Generic Module::Install Perl 5.26 fix
Bug: https://bugs.gentoo.org/615110
Package-Manager: Portage-2.3.6, Repoman-2.3.2
Diffstat (limited to 'dev-perl')
-rw-r--r-- | dev-perl/Curses-UI/Curses-UI-0.960.900-r1.ebuild | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/dev-perl/Curses-UI/Curses-UI-0.960.900-r1.ebuild b/dev-perl/Curses-UI/Curses-UI-0.960.900-r1.ebuild index 9ce34eb9d70..f316f73d728 100644 --- a/dev-perl/Curses-UI/Curses-UI-0.960.900-r1.ebuild +++ b/dev-perl/Curses-UI/Curses-UI-0.960.900-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -23,5 +23,7 @@ SRC_TEST="do" src_prepare() { use test && perl_rm_files t/05pod.t + sed -i -e 's/use inc::Module::Install;/use lib q[.]; use inc::Module::Install;/' Makefile.PL || + die "Can't patch Makefile.PL for 5.26 dot-in-inc" perl-module_src_prepare } |