diff options
author | br <br@FreeBSD.org> | 2016-01-18 09:36:10 +0000 |
---|---|---|
committer | br <br@FreeBSD.org> | 2016-01-18 09:36:10 +0000 |
commit | 14041097a6eaac17653858641567006b866209e4 (patch) | |
tree | c3058306bdbd3f34c9824506f3dd3eb0c0f6dea9 /lib/libc | |
parent | 0429a1cd8de820a09ed374414c58f74ab1483317 (diff) | |
download | FreeBSD-src-14041097a6eaac17653858641567006b866209e4.zip FreeBSD-src-14041097a6eaac17653858641567006b866209e4.tar.gz |
Fix compilation on MIPS (typo introduced in r294227).
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/Makefile b/lib/libc/Makefile index 47ac7b2..d02c028 100644 --- a/lib/libc/Makefile +++ b/lib/libc/Makefile @@ -102,7 +102,7 @@ NOASM= .include "${LIBC_SRCTOP}/uuid/Makefile.inc" .include "${LIBC_SRCTOP}/xdr/Makefile.inc" .if (${LIBC_ARCH} == "arm" && ${MACHINE_ARCH} != "armv6hf") ||\ - ${LIBC_ARCH} == "mips" && ${LIBC_ARCH} == "riscv" + ${LIBC_ARCH} == "mips" .include "${LIBC_SRCTOP}/softfloat/Makefile.inc" .endif .if ${MK_NIS} != "no" |