projects
/
dbsrgits/DBIx-Class-Schema-Loader.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
8bf8022
)
Make sure '.' is last in @INC, not first
Dagfinn Ilmari Mannsåker [Thu, 16 Nov 2017 13:57:10 +0000 (13:57 +0000)]
Otherwise Module::Install breaks in author mode
Makefile.PL
patch
|
blob
|
blame
|
history
diff --git
a/Makefile.PL
b/Makefile.PL
index
8f296f1
..
9d79c14
100644
(file)
--- a/
Makefile.PL
+++ b/
Makefile.PL
@@
-2,7
+2,7
@@
use warnings;
use strict;
use 5.008001;
-use lib '.';
+BEGIN { unshift @INC, '.' unless $INC[-1] eq '.'; }
use inc::Module::Install 1.00;
use Getopt::Long();