Fix running Makefile.PL without '.' in @INC
Dagfinn Ilmari Mannsåker [Mon, 10 Apr 2017 14:19:12 +0000 (15:19 +0100)]
Changes
Makefile.PL

diff --git a/Changes b/Changes
index f3a109b..471cf97 100644 (file)
--- a/Changes
+++ b/Changes
@@ -3,6 +3,7 @@ Revision history for Perl extension DBIx::Class::Schema::Loader
         - Avoid upcoming DBIC warning on implicit SELECT * invocation
           (RT#118178)
         - Improve moniker_map and col_accessor_map coderef documentation (GH#7)
+        - Fix running Makefile.PL without '.' in @INC
 
 0.07046  2016-09-05
         - Introspect view definitions for PostgreSQL, MySQL, Oracle,
index ae6ba95..8f296f1 100644 (file)
@@ -2,6 +2,7 @@ use warnings;
 use strict;
 
 use 5.008001;
+use lib '.';
 use inc::Module::Install 1.00;
 
 use Getopt::Long();