blob: 30f7d6a6e633cb24c92912de688778976a3aa779 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001Description: Ignore files we do not want installed.
2Forwarded: not-needed
3Author: Tim Retout <diocles@debian.org>
4Reviewed-by: gregor herrmann <gregoa@debian.org>
5Last-Update: 2013-10-28
6
7--- a/Makefile.PL
8+++ b/Makefile.PL
9@@ -2,6 +2,11 @@ use strict;
10 use warnings;
11 use Inline::MakeMaker;
12
13+sub MY::libscan {
14+ return if ($_[1] eq 'USB.pm' or $_[1] eq 'dump_usb.pl');
15+ return $_[1];
16+}
17+
18 if($^O eq 'MSWin32')
19 {
20 if(!$ENV{LIBUSB_LIBDIR} or !$ENV{LIBUSB_INCDIR})