parent
f628f8cbe6
commit
159017f30d
@ -1,25 +0,0 @@
|
||||
From d775d167582eb5a0a8b26d3c0e91144666dd54b3 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
|
||||
Date: Tue, 16 May 2017 14:13:42 +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 f75a264..23717c4 100644
|
||||
--- a/Makefile.PL
|
||||
+++ b/Makefile.PL
|
||||
@@ -1,3 +1,4 @@
|
||||
+BEGIN { push @INC, '.'; }
|
||||
use inc::Module::Install;
|
||||
|
||||
name 'Test-Script-Run';
|
||||
--
|
||||
2.9.4
|
||||
|
@ -0,0 +1,37 @@
|
||||
From 450d6f1f5d893287ab322f12ba4e305d42889079 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
|
||||
Date: Tue, 10 Mar 2020 15:25:57 +0100
|
||||
Subject: [PATCH] Strip author dependencies
|
||||
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 | 4 ----
|
||||
1 file changed, 4 deletions(-)
|
||||
|
||||
diff --git a/Makefile.PL b/Makefile.PL
|
||||
index f75a264..903e99f 100644
|
||||
--- a/Makefile.PL
|
||||
+++ b/Makefile.PL
|
||||
@@ -2,7 +2,6 @@ use inc::Module::Install;
|
||||
|
||||
name 'Test-Script-Run';
|
||||
all_from 'lib/Test/Script/Run.pm';
|
||||
-readme_from 'lib/Test/Script/Run.pm';
|
||||
author 'sunnavy <sunnavy@bestpractical.com>';
|
||||
license 'perl';
|
||||
|
||||
@@ -11,8 +10,5 @@ requires 'IPC::Run3';
|
||||
requires 'Test::Exception';
|
||||
recommends($^O =~ /MSWin/ ? 'Win32::ShellQuote' : 'String::ShellQuote' );
|
||||
|
||||
-auto_install;
|
||||
-recursive_author_tests('xt/');
|
||||
-
|
||||
WriteAll;
|
||||
|
||||
--
|
||||
2.21.1
|
||||
|
Loading…
Reference in new issue