diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-10-12 23:34:55 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-10-12 23:34:55 +0000 |
commit | 5a5fac0259d7470b43a6585d193af5bb60bfb2d5 (patch) | |
tree | b9dba235051512cf74280b3d4eac41cc71cebec8 /lib/CPAN | |
parent | 6f748670132fcfd6aa343cd6dd2a0b18fc867c63 (diff) | |
download | perl-5a5fac0259d7470b43a6585d193af5bb60bfb2d5.tar.gz |
Upgrade to CPAN 1.58, from Andreas König.
p4raw-id: //depot/perl@7206
Diffstat (limited to 'lib/CPAN')
-rw-r--r-- | lib/CPAN/FirstTime.pm | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/lib/CPAN/FirstTime.pm b/lib/CPAN/FirstTime.pm index 099183ea30..9f8366e073 100644 --- a/lib/CPAN/FirstTime.pm +++ b/lib/CPAN/FirstTime.pm @@ -16,7 +16,7 @@ use FileHandle (); use File::Basename (); use File::Path (); use vars qw($VERSION); -$VERSION = substr q$Revision: 1.44 $, 10; +$VERSION = substr q$Revision: 1.46 $, 10; =head1 NAME @@ -176,14 +176,13 @@ disable the cache scanning with 'never'. print qq{ -To speed up the initial CPAN shell startup, it is possible to use -Storable to create an cache of metadata. If Storable is not available, -the normal index mechanism will be used. This feature is still -considered experimental and not recommended for production use. +To considerably speed up the initial CPAN shell startup, it is +possible to use Storable to create a cache of metadata. If Storable +is not available, the normal index mechanism will be used. }; - defined($default = $CPAN::Config->{cache_metadata}) or $default = 0; + defined($default = $CPAN::Config->{cache_metadata}) or $default = 1; do { $ans = prompt("Cache metadata (yes/no)?", ($default ? 'yes' : 'no')); } while ($ans !~ /^\s*[yn]/i); |