File: no-dot-in-inc.patch

package info (click to toggle)
libwebservice-youtube-perl 1.0.3-4
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 416 kB
  • sloc: perl: 5,070; makefile: 4
file content (13 lines) | stat: -rw-r--r-- 318 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
Description: fix build failure without . in @INC
Author: Florian Schlichting <fsfs@debian.org>

--- a/Makefile.PL
+++ b/Makefile.PL
@@ -7,6 +7,7 @@
 use utf8;
 our $VERSION = eval { require version; version::qv('1.0.3') };
 
+use lib '.';
 use inc::Module::Install;
 eval {
     require ExtUtils::MakeMaker::Coverage;