mirror of
https://github.com/opnsense/src.git
synced 2026-04-26 08:37:50 -04:00
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:
parent
87bd4d6ceb
commit
12aee77ec8
1 changed files with 4 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue