File: findbin.patch

package info (click to toggle)
libchi-driver-redis-perl 0.10-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 212 kB
  • sloc: perl: 1,439; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 411 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
Description: Use FindBin to find inc::Module::Install
 . is no longer included in @INC as of Perl 5.26 due to CVE-2016-1238
Author: Christopher Hoskin <mans0954@debian.org>
Last-Update: 2018-09-22
Forwarded: https://rt.cpan.org/Public/Bug/Display.html?id=127176
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -1,3 +1,5 @@
+use FindBin;
+use lib $FindBin::Bin;
 use inc::Module::Install;
 
 name     'CHI-Driver-Redis';