Description: Ensure dot directory is in @INC
 Ensure local librarires are found in '.' in Perl 5.26+
Author: Nick Morrott <knowledgejunkie@gmail.com>
Forwarded: no
Last-Update: 2018-11-25
---
--- a/lycos/Makefile.PL
+++ b/lycos/Makefile.PL
@@ -1,6 +1,7 @@
 
 # $Id: Makefile.PL,v 1.10 2008/12/15 22:47:34 Martin Exp $
 
+use lib '.';
 use inc::Module::Install;
 
 all_from('lib/WWW/Search/Lycos.pm');
--- a/altavista/Makefile.PL
+++ b/altavista/Makefile.PL
@@ -1,5 +1,6 @@
 # $Id: Makefile.PL,v 1.19 2008/11/28 17:56:47 Martin Exp $
 
+use lib '.';
 use inc::Module::Install;
 
 all_from('lib/WWW/Search/AltaVista.pm');
--- a/ebay/Makefile.PL
+++ b/ebay/Makefile.PL
@@ -2,6 +2,7 @@
 use warnings;
 use strict;
 
+use lib '.';
 use inc::Module::Install;
 
 version(3.052);
--- a/yahoo/Makefile.PL
+++ b/yahoo/Makefile.PL
@@ -1,4 +1,5 @@
 
+use lib '.';
 use inc::Module::Install;
 
 all_from('lib/WWW/Search/Yahoo.pm');
