1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-29 13:49:30 +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 = $/; my $saved_delim = $/;
undef $/; undef $/;
my $data = `cpp $filename`; my $data = `cc -E $filename`;
$/ = $saved_delim; $/ = $saved_delim;
$self->YYData->{INPUT} = $data; $self->YYData->{INPUT} = $data;