- Fix build on newer systems, add Module-Package-0.30-Fix-building-on-Perl-without-.-in-INC.patch - updated to 0.30 see /usr/share/doc/packages/perl-Module-Package/Changes version: 0.30 date: changes: - Patch from tobyink++ to support user side plugins --- version: 0.29 date: changes: - Put a error message on a die statement. - Released from Liz++ and Wendy++'s garage. --- version: 0.28 date: changes: - skip author requires for modules that have a Module::Install plugin --- version: 0.27 date: changes: - Add Gloom Support --- version: 0.26 date: changes: - Support Test::Common updating --- OBS-URL: https://build.opensuse.org/request/show/640390 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Module-Package?expand=0&rev=13
26 lines
698 B
Diff
26 lines
698 B
Diff
From fc4e65f8d43226739624e15fe3eefa0d05fd8f96 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
|
|
Date: Wed, 17 May 2017 16:48:56 +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
|
|
|
|
Signed-off-by: Petr Písař <ppisar@redhat.com>
|
|
---
|
|
Makefile.PL | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/Makefile.PL b/Makefile.PL
|
|
index 93b5ed5..fffb0d1 100644
|
|
--- a/Makefile.PL
|
|
+++ b/Makefile.PL
|
|
@@ -1,3 +1,4 @@
|
|
+BEGIN { push @INC, '.'; }
|
|
use inc::Module::Package 'Ingy:modern 0.17';
|
|
|
|
# The default module 'lib/Module/Package.pm' has to be very strict
|
|
--
|
|
2.9.4
|
|
|