Change 11908 by jhi@alpha on 2001/09/06 03:38:22
Retract #11898 for now because it introduces
a rather nasty depencency: when B is being built,
MakeMaker is used. MakeMaker uses File::Find.
File::Find uses Cwd::getcwd()...which doesn't
exist yet.
Affected files ...
... //depot/perl/lib/File/Find.pm#48 edit
Differences ...
==== //depot/perl/lib/File/Find.pm#48 (text) ====
Index: perl/lib/File/Find.pm
--- perl/lib/File/Find.pm.~1~ Wed Sep 5 21:45:05 2001
+++ perl/lib/File/Find.pm Wed Sep 5 21:45:05 2001
@@ -475,7 +475,7 @@
$pre_process, $post_process, $dangling_symlinks);
local($dir, $name, $fullname, $prune);
- my $cwd = $wanted->{bydepth} ? Cwd::fastcwd() : Cwd::getcwd();
+ my $cwd = $wanted->{bydepth} ? Cwd::fastcwd() : Cwd::cwd();
my $cwd_untainted = $cwd;
my $check_t_cwd = 1;
$wanted_callback = $wanted->{wanted};
End of Patch.