mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
- Apply binutils workaround on mips.mips as well. Though this TARGET_ARCH
is deprecated, tinderbox uses it.
This commit is contained in:
parent
24a0e7eeab
commit
ba5e340b5f
1 changed files with 2 additions and 1 deletions
|
|
@ -10,7 +10,8 @@ MAN= kafs5.3
|
|||
# Linking with libkrb5 uncovers a bug in binutils.
|
||||
# See http://repo.or.cz/w/binutils.git/commit/ee05170bf71819c99cb5a36a44735c231ae03c56 .
|
||||
#
|
||||
.if ${MACHINE_ARCH} != "mipsn32eb" && ${MACHINE_ARCH} != "mipsel" && ${MACHINE_ARCH} != "mipseb"
|
||||
.if ${MACHINE_ARCH} != "mipsn32eb" && ${MACHINE_ARCH} != "mipsel" && \
|
||||
${MACHINE_ARCH} != "mipseb" && ${MACHINE_ARCH} != "mips"
|
||||
LDADD+= -lkrb5
|
||||
LDFLAGS= -Wl,--no-undefined
|
||||
.endif
|
||||
|
|
|
|||
Loading…
Reference in a new issue