File: findbin.patch

package info (click to toggle)
libcache-memcached-libmemcached-perl 0.04001-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 352 kB
  • sloc: perl: 2,274; makefile: 2
file content (14 lines) | stat: -rw-r--r-- 433 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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=127173
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -1,4 +1,6 @@
 use strict;
+use FindBin;
+use lib $FindBin::Bin;
 use inc::Module::Install;
 
 name('Cache-Memcached-libmemcached');