File: no-dot-in-inc.patch

package info (click to toggle)
libnet-trac-perl 0.16-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 324 kB
  • sloc: perl: 2,855; makefile: 2
file content (12 lines) | stat: -rw-r--r-- 251 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
Description: fix a build failure from removal of . in @INC
Author: Florian Schlichting <fsfs@debian.org>

--- a/Makefile.PL
+++ b/Makefile.PL
@@ -1,5 +1,6 @@
 use warnings;
 use strict;
+use lib '.';
 use inc::Module::Install;
 
 name     'Net-Trac';