We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ebd6cd commit 32b35bfCopy full SHA for 32b35bf
compilers.pl
@@ -6,9 +6,9 @@
6
language => 'Perl 5',
7
compiler => 'perl5',
8
vm => 'perl5',
9
- f_run => [qw( install/bin/perl )],
10
- e_run => [qw( install/bin/perl -E )],
11
- show_ver => [qw( install/bin/perl -E say+$] )],
+ f_run => [$^O =~ /MSWin32/ ? qw( c:/perl/bin/perl ) : qw( install/bin/perl )],
+ e_run => [$^O =~ /MSWin32/ ? qw( c:/perl/bin/perl -E ) : qw( install/bin/perl -E )],
+ show_ver => [$^O =~ /MSWin32/ ? qw( c:/perl/bin/perl -E say+$] ) : qw( install/bin/perl -E say+$] )],
12
},
13
{
14
name => 'p5.pl',
0 commit comments