diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-09-06 03:38:22 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-09-06 03:38:22 +0000 |
commit | 8d9b0165fb4dd847d2330fb27e0c353a472fb897 (patch) | |
tree | e7b66e8c6003afd6cb9e54e4663279f425694c11 /lib | |
parent | f0f0b3b669bd7c4393f5d948f975325333b4da29 (diff) | |
download | perl-8d9b0165fb4dd847d2330fb27e0c353a472fb897.tar.gz |
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
Diffstat (limited to 'lib')
-rw-r--r-- | lib/File/Find.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/File/Find.pm b/lib/File/Find.pm index bfcbcfd008..eb4b2dee28 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}; |