Subversion Repositories ALCASAR

Rev

Go to most recent revision | Details | Last modification | View Log

Rev Author Line No. Line
2176 richard 1
Just change the install script in order it doesn't ask for a perl version
2
Line 94
3
 
4
------------- Before ---------
5
	if ( defined $whichperl ) {
6
		print "Perl to use: [$whichperl] ";
7
		chomp($ans = <STDIN>);
8
		if ( length $ans ) {
9
			$whichperl = $ans;
10
		}
11
	} else {
12
		print "No Perl found in your PATH. Please specify where to find perl [] ";
13
		chomp($whichperl = <STDIN>);
14
	}
15
 
16
------------- After ---------
17
	if ( !defined $whichperl ) {
18
		print "No Perl found in your PATH. Please specify where to find perl [] ";
19
		chomp($whichperl = <STDIN>);
20
	}
21