- Apply binutils workaround on mips.mips as well. Though this TARGET_ARCH

is deprecated, tinderbox uses it.
This commit is contained in:
Stanislav Sedov 2012-03-24 00:42:38 +00:00
parent 24a0e7eeab
commit ba5e340b5f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=233405

View file

@ -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