Module Name: src
Committed By: matt
Date: Thu Jul 9 14:41:30 UTC 2015
Modified Files:
src/sys/modules: Makefile
Log Message:
Don't build compat_netbsd32 if mips64 && building mips-n32
To generate a diff of this commit:
cvs rdiff -u -r1.155 -r1.156 src/sys/modules/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/modules/Makefile
diff -u src/sys/modules/Makefile:1.155 src/sys/modules/Makefile:1.156
--- src/sys/modules/Makefile:1.155 Sun May 17 05:21:38 2015
+++ src/sys/modules/Makefile Thu Jul 9 14:41:30 2015
@@ -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+= wmihp
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