Update of /cvsroot/module-build/Module-Build/lib/Module/Build
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17471/lib/Module/Build
Modified Files:
Compat.pm
Log Message:
Fix a dying bug in the pass-through Makefile.PL
Index: Compat.pm
===================================================================
RCS file: /cvsroot/module-build/Module-Build/lib/Module/Build/Compat.pm,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -d -r1.73 -r1.74
--- Compat.pm 3 Dec 2005 03:08:14 -0000 1.73
+++ Compat.pm 1 Mar 2006 22:46:22 -0000 1.74
@@ -90,8 +90,8 @@
# Save this 'cause CPAN will chdir all over the place.
my $cwd = Cwd::cwd();
- CPAN::Shell->install('Module::Build::Compat')
- or die " *** Cannot install without Module::Build. Exiting ...\n";
+ # There seems to be no way to determine if this install was successful
+ CPAN::Shell->install('Module::Build::Compat');
chdir $cwd or die "Cannot chdir() back to $cwd: $!";
}
|