diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-12-15 21:55:42 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-12-15 21:55:42 +0000 |
commit | 65c8e3685ae20dff2cb44296190e5c1bdff0d04a (patch) | |
tree | f8eb177228f39f95ea496b30fb4a29a6bbc51f17 | |
parent | 2b5bc1b2526d7dbb7ef8235542e9a539050c80e5 (diff) | |
download | samba-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)
-rw-r--r-- | source4/build/pidl/idl.yp | 2 |
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; |