| 0,0 → 1,21 |
| Just change the install script in order it doesn't ask for a perl version |
| Line 94 |
| |
| ------------- Before --------- |
| if ( defined $whichperl ) { |
| print "Perl to use: [$whichperl] "; |
| chomp($ans = <STDIN>); |
| if ( length $ans ) { |
| $whichperl = $ans; |
| } |
| } else { |
| print "No Perl found in your PATH. Please specify where to find perl [] "; |
| chomp($whichperl = <STDIN>); |
| } |
| |
| ------------- After --------- |
| if ( !defined $whichperl ) { |
| print "No Perl found in your PATH. Please specify where to find perl [] "; |
| chomp($whichperl = <STDIN>); |
| } |
| |