diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-01-03 15:01:09 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-01-03 15:01:09 +0000 |
commit | 94c676340b87fea5154fcacf93d2a763960d4c5f (patch) | |
tree | 11ee409b000f80f99b998bbf0d60fbb7ae6e5099 | |
parent | 664232547b20ac25929b13c5d424129717d19e08 (diff) | |
download | perl-94c676340b87fea5154fcacf93d2a763960d4c5f.tar.gz |
NetWare tweaks from Ananth Kesari.
p4raw-id: //depot/perl@14038
-rw-r--r-- | NetWare/t/NWScripts.pl | 2 | ||||
-rw-r--r-- | lib/File/Find.pm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/NetWare/t/NWScripts.pl b/NetWare/t/NWScripts.pl index a2f22a43ef..8ab39296ab 100644 --- a/NetWare/t/NWScripts.pl +++ b/NetWare/t/NWScripts.pl @@ -11,7 +11,7 @@ $DirName = "t"; # These scripts have problems (either abend or hang) as of now (11 May 2001). # So, they are commented out in the corresponding auto scripts, io.pl and lib.pl -@ScriptsNotUsed = ("t/io/argv.t", "t/io/openpid.t", "t/lib/filehandle.t", "t/lib/warnings.t"); +@ScriptsNotUsed = ("t/io/openpid.t", "t/lib/filehandle.t", "t/lib/memoize/t/expire_module_t.t"); opendir(DIR, $DirName); @Dirs = readdir(DIR); diff --git a/lib/File/Find.pm b/lib/File/Find.pm index dbc1b78343..41afeb93e2 100644 --- a/lib/File/Find.pm +++ b/lib/File/Find.pm @@ -1137,7 +1137,7 @@ $File::Find::current_dir = File::Spec->curdir || '.'; $File::Find::dont_use_nlink = 1 if $^O eq 'os2' || $^O eq 'dos' || $^O eq 'amigaos' || $^O eq 'MSWin32' || - $^O eq 'cygwin' || $^O eq 'epoc' || $^O eq 'NetWare'; + $^O eq 'cygwin' || $^O eq 'epoc'; # Set dont_use_nlink in your hint file if your system's stat doesn't # report the number of links in a directory as an indication |