You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
472 B

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