diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2009-02-09 23:29:41 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2009-02-09 23:29:41 +0100 |
commit | 69fff2d750fff7742c437d89831804afd674d9d1 (patch) | |
tree | bfd381f605897e952dc12645da9c3c36d67e67fa /source4/build | |
parent | 73c603562fe22727d9fc313446e1d899038097f5 (diff) | |
download | samba-69fff2d750fff7742c437d89831804afd674d9d1.tar.gz samba-69fff2d750fff7742c437d89831804afd674d9d1.tar.xz samba-69fff2d750fff7742c437d89831804afd674d9d1.zip |
Revert "Fix errornos assumption that all compilers are gcc"
This breaks (some?) files with gcc.
This reverts commit 98a4327b19e83ffad4e0be7e8895fdbd9e48d49f.
Diffstat (limited to 'source4/build')
-rw-r--r-- | source4/build/pasn1/asn1.yp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/build/pasn1/asn1.yp b/source4/build/pasn1/asn1.yp index 24aef05b403..7fc834ff2b7 100644 --- a/source4/build/pasn1/asn1.yp +++ b/source4/build/pasn1/asn1.yp @@ -296,7 +296,7 @@ sub parse_asn1($$) if (! defined $cpp) { $cpp = "cpp" } - my $data = `$cpp $filename`; + my $data = `$cpp -xc $filename`; $/ = $saved_delim; $self->YYData->{INPUT} = $data; |