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

index 787254c..e81ca51 100644 (file)
@@ -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"