Exclude xlint for ia64. For the time being, there are enough gcc

dependencies in the machine/* headers to make it explode when -U__GNUC__
is specified by lint.  Not to mention that lint is passing undocumented
(illegal?) args to cpp and that seems to upset gcc-3.1 now.
Specifically, -Wp,-CC.  -Wp,-C is documented and legal though.
This commit is contained in:
Peter Wemm 2002-04-06 05:51:59 +00:00
parent 87bd4d6ceb
commit 12aee77ec8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=93932

View File

@ -187,7 +187,6 @@ SUBDIR= apply \
write \
xargs \
xinstall \
xlint \
xstr \
yacc \
yes \
@ -233,6 +232,10 @@ SUBDIR+=ar \
SUBDIR+=uac
.endif
.if ${MACHINE_ARCH} != "ia64"
SUBDIR+=xlint
.endif
.if exists(${.CURDIR}/../crypto) && !defined(NOCRYPT) && !defined(NO_OPENSSL)
SUBDIR+=chkey newkey
.endif