diff options
author | Chad Loder <cloder@cvs.openbsd.org> | 2006-04-18 22:34:18 +0000 |
---|---|---|
committer | Chad Loder <cloder@cvs.openbsd.org> | 2006-04-18 22:34:18 +0000 |
commit | f90b72191398499be991a21a6a94f0550570776c (patch) | |
tree | f182b78e62b68adfa211f1bbf73c4e58e186879f /usr.bin/xlint | |
parent | efb91664eb9d596e0e5aefc00193aa96efda0ed7 (diff) |
Disable -CC to cpp until cpp 2.95 can handle it properly
Diffstat (limited to 'usr.bin/xlint')
-rw-r--r-- | usr.bin/xlint/xlint/xlint.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/xlint/xlint/xlint.c b/usr.bin/xlint/xlint/xlint.c index 094232765ec..5bc5da12bdb 100644 --- a/usr.bin/xlint/xlint/xlint.c +++ b/usr.bin/xlint/xlint/xlint.c @@ -1,4 +1,4 @@ -/* $OpenBSD: xlint.c,v 1.28 2006/04/17 16:35:05 cloder Exp $ */ +/* $OpenBSD: xlint.c,v 1.29 2006/04/18 22:34:17 cloder Exp $ */ /* $NetBSD: xlint.c,v 1.3 1995/10/23 14:29:30 jpo Exp $ */ /* @@ -33,7 +33,7 @@ */ #ifndef lint -static char rcsid[] = "$OpenBSD: xlint.c,v 1.28 2006/04/17 16:35:05 cloder Exp $"; +static char rcsid[] = "$OpenBSD: xlint.c,v 1.29 2006/04/18 22:34:17 cloder Exp $"; #endif #include <sys/param.h> @@ -316,7 +316,7 @@ main(int argc, char *argv[]) #if defined(__GNUC__) && __GNUC__ < 3 appcstrg(&cppflags, "-$"); #endif - appcstrg(&cppflags, "-CC"); + appcstrg(&cppflags, "-C"); appcstrg(&cppflags, "-Wcomment"); appcstrg(&cppflags, "-D__OpenBSD__"); appcstrg(&cppflags, "-Dlint"); /* XXX don't def. with -s */ |