Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/modules Don't build compat_netbsd32 if mips64 && buildin...



details:   https://anonhg.NetBSD.org/src/rev/4ea3206b5a21
branches:  trunk
changeset: 809421:4ea3206b5a21
user:      matt <matt%NetBSD.org@localhost>
date:      Thu Jul 09 14:41:30 2015 +0000

description:
Don't build compat_netbsd32 if mips64 && building mips-n32

diffstat:

 sys/modules/Makefile |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (19 lines):

diff -r 708b85c982e3 -r 4ea3206b5a21 sys/modules/Makefile
--- a/sys/modules/Makefile      Thu Jul 09 14:32:24 2015 +0000
+++ b/sys/modules/Makefile      Thu Jul 09 14:41:30 2015 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.155 2015/05/17 05:21:38 pgoyette Exp $
+#      $NetBSD: Makefile,v 1.156 2015/07/09 14:41:30 matt Exp $
 
 .include <bsd.own.mk>
 
@@ -206,7 +206,8 @@
 SUBDIR+=       wmimsi
 .endif
 
-.if ${MACHINE_CPU} == "arm" || !empty(MACHINE_ARCH:Mmips64*)
+.if ${MACHINE_CPU} == "arm" \
+    || (!empty(MACHINE_ARCH:Mmips64*) && !defined(BSD_MK_COMPAT_FILE))
 SUBDIR+=       compat_netbsd32
 .endif
 



Home | Main Index | Thread Index | Old Index