summaryrefslogtreecommitdiff
path: root/source4/build/pidl/idl.yp
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2003-12-15 21:55:42 +0000
committerAndrew Tridgell <tridge@samba.org>2003-12-15 21:55:42 +0000
commit65c8e3685ae20dff2cb44296190e5c1bdff0d04a (patch)
treef8eb177228f39f95ea496b30fb4a29a6bbc51f17 /source4/build/pidl/idl.yp
parent2b5bc1b2526d7dbb7ef8235542e9a539050c80e5 (diff)
downloadsamba-65c8e3685ae20dff2cb44296190e5c1bdff0d04a.tar.gz
samba-65c8e3685ae20dff2cb44296190e5c1bdff0d04a.tar.bz2
samba-65c8e3685ae20dff2cb44296190e5c1bdff0d04a.zip
lets see if "cc -E" keeps more of the build farm happy then "cpp"
We'll probably need a configure entry for this (This used to be commit 66e648f20ffd34e2cff1b94003db9974d2bac318)
Diffstat (limited to 'source4/build/pidl/idl.yp')
-rw-r--r--source4/build/pidl/idl.yp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/build/pidl/idl.yp b/source4/build/pidl/idl.yp
index 607964f679..3e9943a009 100644
--- a/source4/build/pidl/idl.yp
+++ b/source4/build/pidl/idl.yp
@@ -304,7 +304,7 @@ sub parse_idl($$)
my $saved_delim = $/;
undef $/;
- my $data = `cpp $filename`;
+ my $data = `cc -E $filename`;
$/ = $saved_delim;
$self->YYData->{INPUT} = $data;