forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-perl/AnyEvent: Fix for '.' in @inc re bug #614640
Force 'do' to use a relative path for compile time resolution instead of searching @inc and failing on Perl 5.26 Bug: https://bugs.gentoo.org/614640 Package-Manager: Portage-2.3.6, Repoman-2.3.2
- Loading branch information
1 parent
5298ef9
commit 01eac82
Showing
3 changed files
with
31 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
From 6fec7931344cc37c9532e8c455ee7f7bf62b9419 Mon Sep 17 00:00:00 2001 | ||
From: Kent Fredric <[email protected]> | ||
Date: Wed, 14 Jun 2017 19:56:48 +1200 | ||
Subject: [PATCH] Fix "do" for '.' in @INC removal | ||
|
||
Trivial fix for: | ||
|
||
- http://lists.schmorp.de/pipermail/anyevent/2017q1/000859.html | ||
--- | ||
Makefile.PL | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/Makefile.PL b/Makefile.PL | ||
index ef2ab4a..70b30b0 100644 | ||
--- a/Makefile.PL | ||
+++ b/Makefile.PL | ||
@@ -22,7 +22,7 @@ print <<EOF; | ||
|
||
EOF | ||
|
||
-do "constants.pl.PL" | ||
+do "./constants.pl.PL" | ||
or die "cannot execute constants.pl.PL: $@"; | ||
|
||
WriteMakefile( | ||
-- | ||
2.13.1 | ||
|