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 commit is contained in:
Andrew Tridgell -
parent 2d57346c2d
commit 66e648f20f

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;