Module Name:    src
Committed By:   matt
Date:           Fri Jan 11 12:55:29 UTC 2013

Modified Files:
        src/share/mk: bsd.own.mk

Log Message:
Make MKSOFTFLOAT = yes for ARM (since arm is softfloat by default).


To generate a diff of this commit:
cvs rdiff -u -r1.716 -r1.717 src/share/mk/bsd.own.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/share/mk/bsd.own.mk
diff -u src/share/mk/bsd.own.mk:1.716 src/share/mk/bsd.own.mk:1.717
--- src/share/mk/bsd.own.mk:1.716	Fri Nov 30 17:51:50 2012
+++ src/share/mk/bsd.own.mk	Fri Jan 11 12:55:29 2013
@@ -1,4 +1,4 @@
-#	$NetBSD: bsd.own.mk,v 1.716 2012/11/30 17:51:50 joerg Exp $
+#	$NetBSD: bsd.own.mk,v 1.717 2013/01/11 12:55:29 matt Exp $
 
 # This needs to be before bsd.init.mk
 .if defined(BSD_MK_COMPAT_FILE)
@@ -788,10 +788,11 @@ MKCOMPATMODULES:=	no
 
 #
 # Default mips64 to softfloat now.
+# arm is always softfloat
 # emips is always softfloat.
 #
 .if ${MACHINE_ARCH} == "mips64eb" || ${MACHINE_ARCH} == "mips64el" || \
-    ${MACHINE} == "emips"
+    ${MACHINE_CPU} == "arm" || ${MACHINE} == "emips"
 MKSOFTFLOAT?=	yes
 .endif
 

Reply via email to