From 4f01203b03788c761d4efa8790faa4bc426c7d9a Mon Sep 17 00:00:00 2001 From: peter Date: Sat, 6 Apr 2002 05:51:59 +0000 Subject: 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. --- usr.bin/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'usr.bin') diff --git a/usr.bin/Makefile b/usr.bin/Makefile index 7b97d9f..021e65b 100644 --- a/usr.bin/Makefile +++ b/usr.bin/Makefile @@ -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 -- cgit v1.1