summaryrefslogtreecommitdiff
path: root/lib/CPAN/FirstTime.pm
diff options
context:
space:
mode:
authorAndreas Koenig <a.koenig@mind.de>1997-02-18 11:59:13 +1200
committerChip Salzenberg <chip@atlantic.net>1997-04-01 12:01:35 +1200
commite50380aa73f3dc3a7ec5b4ac9b4ec9fc5c113aea (patch)
tree487fa17ea236a81cd626830450832ed65233fcb9 /lib/CPAN/FirstTime.pm
parenta3b6010a2721475ff9a5f9ca58e8e45fad2e99f1 (diff)
downloadperl-e50380aa73f3dc3a7ec5b4ac9b4ec9fc5c113aea.tar.gz
Refresh CPAN to 1.24
Diffstat (limited to 'lib/CPAN/FirstTime.pm')
-rw-r--r--lib/CPAN/FirstTime.pm10
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/CPAN/FirstTime.pm b/lib/CPAN/FirstTime.pm
index c996a1cfbb..8ac180dc71 100644
--- a/lib/CPAN/FirstTime.pm
+++ b/lib/CPAN/FirstTime.pm
@@ -15,7 +15,7 @@ use ExtUtils::MakeMaker qw(prompt);
use FileHandle ();
use File::Path ();
use vars qw($VERSION);
-$VERSION = substr q$Revision: 1.16 $, 10;
+$VERSION = substr q$Revision: 1.18 $, 10;
=head1 NAME
@@ -128,7 +128,7 @@ those.
my(@path) = split($Config{path_sep},$ENV{PATH});
my $prog;
- for $prog (qw/gzip tar unzip make lynx ftp/){
+ for $prog (qw/gzip tar unzip make lynx ncftp ftp/){
my $path = $CPAN::Config->{$prog} || find_exe($prog,[@path]) || $prog;
$ans = prompt("Where is your $prog program?",$path) || $path;
$CPAN::Config->{$prog} = $ans;
@@ -178,7 +178,8 @@ without caring about them. As sometimes the Makefile.PL contains
question you\'re expected to answer, you can set a timer that will
kill a 'perl Makefile.PL' process after the specified time in seconds.
-If you set this value to 0, these processes will wait forever.
+If you set this value to 0, these processes will wait forever. This is
+the default and recommended setting.
};
@@ -257,8 +258,9 @@ the \$CPAN::Config takes precedence.
$CPAN::Config->{$_} = prompt("Your $_?",$default);
}
- # We don't ask that now, it will be noticed in time....
+ # We don't ask that now, it will be noticed in time, won't it?
$CPAN::Config->{'inhibit_startup_message'} = 0;
+ $CPAN::Config->{'getcwd'} = 'cwd';
print "\n\n";
CPAN::Config->commit($configpm);