Update of /cvsroot/module-build/Module-Build
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17112
Modified Files:
Build.PL
Log Message:
Some fixes against Perl version 5.005_03.
Index: Build.PL
===================================================================
RCS file: /cvsroot/module-build/Module-Build/Build.PL,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -d -r1.60 -r1.61
--- Build.PL 3 Oct 2005 07:24:24 -0000 1.60
+++ Build.PL 30 Nov 2005 10:47:33 -0000 1.61
@@ -2,7 +2,7 @@
# On some platforms (*ahem*, MacPerl 5.6.1) "use lib qw(lib);" doesn't
# find the local "lib" directory, so we use File::Spec to do it properly.
-use File::Spec;
+use File::Spec 0.82;
use lib File::Spec->catdir('lib'); # use our self to install
use lib File::Spec->catdir('t', 'lib'); # use bundled Test::More
@@ -27,7 +27,7 @@
'File::Copy' => 0,
'File::Find' => 0,
'File::Path' => 0,
- 'File::Spec' => 0,
+ 'File::Spec' => '0.82', # rel2abs()
'ExtUtils::Install' => 0,
'ExtUtils::Manifest' => 0,
'ExtUtils::Mkbootstrap' => 0,
|