Author: ericwilhelm
Date: Fri Oct 26 09:13:49 2007
New Revision: 10124
Modified:
Module-Build/trunk/t/lib/MBTest.pm
Log:
t/lib/MBTest.pm - tempdir cannot have a '.' in VMS
Modified: Module-Build/trunk/t/lib/MBTest.pm
==============================================================================
--- Module-Build/trunk/t/lib/MBTest.pm (original)
+++ Module-Build/trunk/t/lib/MBTest.pm Fri Oct 26 09:13:49 2007
@@ -62,7 +62,7 @@
{ # Setup a temp directory if it doesn't exist
my $cwd = Cwd::cwd;
- my $tmp = File::Spec->catdir( $cwd, 't', '_tmp.' . $$);
+ my $tmp = File::Spec->catdir( $cwd, 't', '_tmp' . $$);
mkdir $tmp, 0777 unless -d $tmp;
sub tmpdir { $tmp }