summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-perl/AnyEvent/files/no-dot-inc.patch')
-rw-r--r--dev-perl/AnyEvent/files/no-dot-inc.patch28
1 files changed, 28 insertions, 0 deletions
diff --git a/dev-perl/AnyEvent/files/no-dot-inc.patch b/dev-perl/AnyEvent/files/no-dot-inc.patch
new file mode 100644
index 000000000000..ce0efa5b8ce5
--- /dev/null
+++ b/dev-perl/AnyEvent/files/no-dot-inc.patch
@@ -0,0 +1,28 @@
+From 6fec7931344cc37c9532e8c455ee7f7bf62b9419 Mon Sep 17 00:00:00 2001
+From: Kent Fredric <kentfredric@gmail.com>
+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
+