From: Jarkko Hietaniemi Date: Thu, 6 Sep 2001 03:38:22 +0000 (+0000) Subject: Retract #11898 for now because it introduces X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=8d9b0165fb4dd847d2330fb27e0c353a472fb897;p=p5sagit%2Fp5-mst-13.2.git 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. p4raw-id: //depot/perl@11908 --- diff --git a/lib/File/Find.pm b/lib/File/Find.pm index bfcbcfd..eb4b2de 100644 --- a/lib/File/Find.pm +++ b/lib/File/Find.pm @@ -475,7 +475,7 @@ sub _find_opt { $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};