diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2006-11-07 01:00:27 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:25:01 -0500 |
commit | 9972dc2549d3a67d8790d3a1dfd02a82584ec1b2 (patch) | |
tree | c193996be1807af89394ea92b25c6a4c24a9c574 /source4/pidl/lib/Parse/Pidl | |
parent | 13dbee3ffea6065a826f010e50c9b4eb2c6ad109 (diff) | |
download | samba-9972dc2549d3a67d8790d3a1dfd02a82584ec1b2.tar.gz samba-9972dc2549d3a67d8790d3a1dfd02a82584ec1b2.tar.bz2 samba-9972dc2549d3a67d8790d3a1dfd02a82584ec1b2.zip |
r19599: Fix --includedir.
(This used to be commit 0da2bbcf766dc25805ad583fae185045bb390a5f)
Diffstat (limited to 'source4/pidl/lib/Parse/Pidl')
-rw-r--r-- | source4/pidl/lib/Parse/Pidl/IDL.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/pidl/lib/Parse/Pidl/IDL.pm b/source4/pidl/lib/Parse/Pidl/IDL.pm index d237db7137..85c5b8b828 100644 --- a/source4/pidl/lib/Parse/Pidl/IDL.pm +++ b/source4/pidl/lib/Parse/Pidl/IDL.pm @@ -3144,7 +3144,7 @@ sub parse_file($$) if (! defined $cpp) { $cpp = "cpp"; } - my $includes = map { " -I$_" } @$incdirs; + my $includes = join('',map { " -I$_" } @$incdirs); my $data = `$cpp -D__PIDL__$includes -xc $filename`; $/ = $saved_delim; |