From 65c8e3685ae20dff2cb44296190e5c1bdff0d04a Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 15 Dec 2003 21:55:42 +0000 Subject: 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) --- source4/build/pidl/idl.yp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4') 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; -- cgit