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 6c24e71 commit 1ff01d2Copy full SHA for 1ff01d2
tools/lib/NQP/Configure.pm
@@ -132,7 +132,7 @@ END
132
}
133
close($PARROT_CONFIG) or die $!;
134
135
- elsif (open my $PARROT, '-|', "$file parrot-config.pir") {
+ elsif (open my $PARROT, '-|', "\"$file\" parrot-config.pir") {
136
while (<$PARROT>) {
137
if (/^([\w:]+)=(.*)/) { $config{$1} = $2 }
138
@@ -165,7 +165,7 @@ sub fill_template_text {
165
166
my $escape = sub {
167
my $str = $_[0];
168
- $str =~ s{ }{\\\\ }g;
+ $str =~ s{ }{\\ }g;
169
$str;
170
};
171
0 commit comments