mirror of
https://github.com/samba-team/samba.git
synced 2025-02-23 09:57:40 +03:00
pidl: fixed call to cpp with a space in the directory name
This commit is contained in:
parent
fcdbd06136
commit
a3ed70ff96
@ -657,7 +657,7 @@ sub parse_file($$)
|
||||
$cpp = "cpp";
|
||||
}
|
||||
my $includes = join('',map { " -I$_" } @$incdirs);
|
||||
my $data = `$cpp -D__PIDL__$includes -xc $filename`;
|
||||
my $data = `$cpp -D__PIDL__$includes -xc "$filename"`;
|
||||
$/ = $saved_delim;
|
||||
|
||||
return parse_string($data, $filename);
|
||||
|
@ -2623,7 +2623,7 @@ sub parse_file($$)
|
||||
$cpp = "cpp";
|
||||
}
|
||||
my $includes = join('',map { " -I$_" } @$incdirs);
|
||||
my $data = `$cpp -D__PIDL__$includes -xc $filename`;
|
||||
my $data = `$cpp -D__PIDL__$includes -xc "$filename"`;
|
||||
$/ = $saved_delim;
|
||||
|
||||
return parse_string($data, $filename);
|
||||
|
Loading…
x
Reference in New Issue
Block a user