svn commit: r294262 - head/lib/libc

Ruslan Bukin br at FreeBSD.org
Mon Jan 18 09:36:11 UTC 2016


Author: br
Date: Mon Jan 18 09:36:10 2016
New Revision: 294262
URL: https://svnweb.freebsd.org/changeset/base/294262

Log:
  Fix compilation on MIPS (typo introduced in r294227).

Modified:
  head/lib/libc/Makefile

Modified: head/lib/libc/Makefile
==============================================================================
--- head/lib/libc/Makefile	Mon Jan 18 08:52:09 2016	(r294261)
+++ head/lib/libc/Makefile	Mon Jan 18 09:36:10 2016	(r294262)
@@ -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"


More information about the svn-src-all mailing list