diff options
author | peter <peter@FreeBSD.org> | 2002-04-06 05:51:59 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2002-04-06 05:51:59 +0000 |
commit | 4f01203b03788c761d4efa8790faa4bc426c7d9a (patch) | |
tree | b098ee36e253669b0352e2a92aa1b5517961b3b1 /usr.bin/Makefile | |
parent | 930f8eb170d60eb03d65557875371344cefe4d1f (diff) | |
download | FreeBSD-src-4f01203b03788c761d4efa8790faa4bc426c7d9a.zip FreeBSD-src-4f01203b03788c761d4efa8790faa4bc426c7d9a.tar.gz |
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.
Diffstat (limited to 'usr.bin/Makefile')
-rw-r--r-- | usr.bin/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
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 |