blob: 7dd904140ad4efb322724e7429cba7d7bb8fbb4d [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001From 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