Skip to content

Commit

Permalink
Small preparation to allow paths with spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz committed Feb 11, 2013
1 parent 8654841 commit 8282ac5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/lib/NQP/Configure.pm
Expand Up @@ -83,7 +83,7 @@ sub read_config {
my %config = ();
for my $file (@config_src) {
no warnings;
if (open my $CONFIG, '-|', "$file --show-config") {
if (open my $CONFIG, '-|', qq["$file" --show-config]) {
while (<$CONFIG>) {
if (/^([\w:]+)=(.*)/) { $config{$1} = $2 }
}
Expand Down

0 comments on commit 8282ac5

Please sign in to comment.