File: no-dot-in-inc.patch

package info (click to toggle)
libtest-yaml-valid-perl 0.04-2.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 280 kB
  • sloc: perl: 2,314; makefile: 2
file content (12 lines) | stat: -rw-r--r-- 245 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
Description: fix build failure without . in @INC
Author: Florian Schlichting <fsfs@debian.org>

--- a/Makefile.PL
+++ b/Makefile.PL
@@ -1,5 +1,6 @@
 use strict;
 use warnings;
+use lib '.';
 use inc::Module::Install;
 
 name('Test-YAML-Valid');