summaryrefslogtreecommitdiff
path: root/dev-perl/asa
diff options
context:
space:
mode:
authorKent Fredric <kentnl@gentoo.org>2017-06-22 18:03:26 +1200
committerKent Fredric <kentnl@gentoo.org>2017-06-22 18:31:10 +1200
commit86b557e4ca65272254d681988eff483908f02246 (patch)
treee3a5bb243558bcde148af75265e7f8bbbf74e7b7 /dev-perl/asa
parentff0bfa34a537c641ed23f27ac917518c84c90eae (diff)
downloadgentoo-86b557e4ca65272254d681988eff483908f02246.tar.gz
gentoo-86b557e4ca65272254d681988eff483908f02246.tar.xz
dev-perl/asa: Fix broken Module::Install::DSL patching
For some rediculous reason, this module changes everything about Perl, so optional newlines cease to be optional. Additionally, this causes configure to exit true, but fail to configure. And this breaks install time, necessitating an -r1 bump. Package-Manager: Portage-2.3.6, Repoman-2.3.2
Diffstat (limited to 'dev-perl/asa')
-rw-r--r--dev-perl/asa/asa-1.30.0-r1.ebuild (renamed from dev-perl/asa/asa-1.30.0.ebuild)2
1 files changed, 1 insertions, 1 deletions
diff --git a/dev-perl/asa/asa-1.30.0.ebuild b/dev-perl/asa/asa-1.30.0-r1.ebuild
index ac7be2e0280..f480c774670 100644
--- a/dev-perl/asa/asa-1.30.0.ebuild
+++ b/dev-perl/asa/asa-1.30.0-r1.ebuild
@@ -22,7 +22,7 @@ DEPEND="${RDEPEND}
)
"
src_prepare() {
- sed -i -e 's/use inc::Module::Install::DSL;/use lib q[.]; use inc::Module::Install::DSL;/' Makefile.PL ||
+ sed -i -e 's/use inc::Module::Install::DSL;/use lib q[.];\nuse inc::Module::Install::DSL;/' Makefile.PL ||
die "Can't patch Makefile.PL for 5.26 dot-in-inc"
perl-module_src_prepare
}