32 lines
820 B
Diff
32 lines
820 B
Diff
From 70ca3b6f3e6b02bec419e944a937fd1b19b0decc Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
|
|
Date: Mon, 15 May 2017 14:26:38 +0200
|
|
Subject: [PATCH] Fix building on Perl without "." in @INC
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
CPAN RT#120446
|
|
|
|
Signed-off-by: Petr Písař <ppisar@redhat.com>
|
|
---
|
|
Makefile.PL | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/Makefile.PL b/Makefile.PL
|
|
index 898040d..5b25425 100644
|
|
--- a/Makefile.PL
|
|
+++ b/Makefile.PL
|
|
@@ -182,7 +182,7 @@ sub tools_other
|
|
my $fragment = $self->SUPER::tools_other (@_);
|
|
|
|
$fragment =~ s/^MOD_INSTALL\s*=\s*(.*?)-MExtUtils::Install
|
|
- /MOD_INSTALL =$1-MMyInstall/msx;
|
|
+ /MOD_INSTALL =$1-I. -MMyInstall/msx;
|
|
|
|
return $fragment;
|
|
}
|
|
--
|
|
2.9.4
|
|
|