Later versions of gcc object very strongly to the -C flag being passed

as -CC.  It makes no difference to gcc in the tree, but this change is
necessary for gcc-3.1 to work.
This commit is contained in:
Peter Wemm 2002-04-07 06:28:38 +00:00
parent 8de89da016
commit e3bcba7879
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=94034

View File

@ -344,7 +344,7 @@ main(int argc, char *argv[])
appcstrg(&cflags, "-undef");
#endif
appcstrg(&cflags, "-Wp,-$");
appcstrg(&cflags, "-Wp,-CC");
appcstrg(&cflags, "-Wp,-C");
appcstrg(&cflags, "-Wcomment");
appcstrg(&cflags, "-D__LINT__");
appcstrg(&cflags, "-Dlint"); /* XXX don't def. with -s */