diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-11-21 23:05:07 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-11-21 23:10:14 +1100 |
commit | a3ed70ff96122531ba000123cdf3992d26663f30 (patch) | |
tree | 2630942ae5cb64d891c578172ebbcfe71e7fa360 /pidl/idl.yp | |
parent | fcdbd0613631b02b991214b2dccbb97eb571ac28 (diff) | |
download | samba-a3ed70ff96122531ba000123cdf3992d26663f30.tar.gz |
pidl: fixed call to cpp with a space in the directory name
Diffstat (limited to 'pidl/idl.yp')
-rw-r--r-- | pidl/idl.yp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pidl/idl.yp b/pidl/idl.yp index b3d5ed16ac..30247f9ef3 100644 --- a/pidl/idl.yp +++ b/pidl/idl.yp @@ -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); |