1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-17 02:05:21 +03:00

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)
This commit is contained in:
Andrew Tridgell 2003-12-15 21:55:42 +00:00
parent 2b5bc1b252
commit 65c8e3685a

View File

@ -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;