Module Name: src
Committed By: macallan
Date: Fri Oct 14 17:29:29 UTC 2016
Modified Files:
src/lib: Makefile
Log Message:
build libc_fp only on mips64*
To generate a diff of this commit:
cvs rdiff -u -r1.247 -r1.248 src/lib/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/Makefile
diff -u src/lib/Makefile:1.247 src/lib/Makefile:1.248
--- src/lib/Makefile:1.247 Tue Oct 11 17:02:28 2016
+++ src/lib/Makefile Fri Oct 14 17:29:29 2016
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.247 2016/10/11 17:02:28 macallan Exp $
+# $NetBSD: Makefile,v 1.248 2016/10/14 17:29:29 macallan Exp $
# from: @(#)Makefile 5.25.1.1 (Berkeley) 5/7/91
.include <bsd.own.mk>
@@ -40,7 +40,7 @@ LIBC_MACHINE_CPU?=${MACHINE_CPU}
SUBDIR+= libc_vfp
.endif
.endif
-.if ${MACHINE_CPU} == "mips"
+.if ${MACHINE_ARCH} == "mips64el" || ${MACHINE_ARCH} == "mips64eb"
SUBDIR+= libc_fp
.endif
.if (${MKRUMP} != "no")