summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/perl/perl/perl-PathTools-don-t-filter-out-blib-from-INC.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/perl/perl/perl-PathTools-don-t-filter-out-blib-from-INC.patch')
-rw-r--r--meta/recipes-devtools/perl/perl/perl-PathTools-don-t-filter-out-blib-from-INC.patch33
1 files changed, 33 insertions, 0 deletions
diff --git a/meta/recipes-devtools/perl/perl/perl-PathTools-don-t-filter-out-blib-from-INC.patch b/meta/recipes-devtools/perl/perl/perl-PathTools-don-t-filter-out-blib-from-INC.patch
new file mode 100644
index 0000000000..7dd904140a
--- /dev/null
+++ b/meta/recipes-devtools/perl/perl/perl-PathTools-don-t-filter-out-blib-from-INC.patch
@@ -0,0 +1,33 @@
1From 90c252cecc38aed5d5faedb30485dd6eee2e54eb Mon Sep 17 00:00:00 2001
2From: Wenzong Fan <wenzong.fan@windriver.com>
3Date: Wed, 11 Feb 2015 15:14:40 +0800
4Subject: [PATCH] perl / PathTools: don't filter out blib from @INC
5
6If $TOPDIR includes the string "blib", filter it out from @INC may empty
7the @INC and cause build errors like:
8
9 Can't locate ExtUtils/MakeMaker.pm in @INC \
10 (you may need to install the ExtUtils::MakeMaker module) \
11 (@INC contains: .) at Makefile.PL
12
13Upstream-Status: Pending
14
15Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com>
16---
17 dist/PathTools/Makefile.PL | 3 ---
18 1 file changed, 3 deletions(-)
19
20diff --git a/dist/PathTools/Makefile.PL b/dist/PathTools/Makefile.PL
21index 1b21de4..f562cb2 100644
22--- a/dist/PathTools/Makefile.PL
23+++ b/dist/PathTools/Makefile.PL
24@@ -1,6 +1,3 @@
25-
26-BEGIN { @INC = grep {!/blib/} @INC }
27-
28 require 5.005;
29 use ExtUtils::MakeMaker;
30 WriteMakefile
31--
321.9.1
33