projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
7d8fed6
)
Avoid using 'lib' in make_ext.pl.
Nicholas Clark [Sat, 12 Sep 2009 21:28:38 +0000 (22:28 +0100)]
This reduces ordering constraints in the build process.
make_ext.pl
patch
|
blob
|
blame
|
history
diff --git
a/make_ext.pl
b/make_ext.pl
index
787254c
..
e81ca51
100644
(file)
--- a/
make_ext.pl
+++ b/
make_ext.pl
@@
-2,7
+2,9
@@
use strict;
use warnings;
use Config;
-use lib 'ext/Cwd';
+BEGIN {
+ unshift @INC, 'ext/Cwd';
+}
use Cwd;
# To clarify, this isn't the entire suite of modules considered "toolchain"