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 54e960d commit 7e2aa75Copy full SHA for 7e2aa75
Configure.pl
@@ -6,7 +6,7 @@
6
use warnings;
7
use Text::ParseWords;
8
use Getopt::Long;
9
-use Cwd;
+use Cwd qw/abs_path cwd/;
10
use lib "tools/lib";
11
use NQP::Configure qw(cmp_rev read_parrot_config
12
fill_template_file fill_template_text
@@ -40,7 +40,7 @@
40
"Use --with-parrot to specify the parrot executable to use."
41
}
42
43
- my $prefix = $options{'prefix'} || cwd().'/install';
+ my $prefix = abs_path($options{'prefix'} || cwd().'/install');
44
my $with_parrot = $options{'with-parrot'};
45
my $gen_parrot = $options{'gen-parrot'};
46
0 commit comments