Source-Changes-HG archive

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

[src/trunk]: src/sys/modules Also build and install compat_aoutm68k.kmod and ...



details:   https://anonhg.NetBSD.org/src/rev/5a21ca66d620
branches:  trunk
changeset: 758126:5a21ca66d620
user:      tsutsui <tsutsui%NetBSD.org@localhost>
date:      Wed Oct 20 14:50:22 2010 +0000

description:
Also build and install compat_aoutm68k.kmod and exec_aout.kmod on m68000
to make things easier.  ${MACHINE_ARCH} == ${MACHINE_CPU} on m68k
so we can't use ad.m68k for a set list to exclude m68000.

diffstat:

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

diffs (27 lines):

diff -r cd4f9e9a41bb -r 5a21ca66d620 sys/modules/Makefile
--- a/sys/modules/Makefile      Wed Oct 20 13:40:02 2010 +0000
+++ b/sys/modules/Makefile      Wed Oct 20 14:50:22 2010 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.48 2010/10/19 11:58:01 pgoyette Exp $
+#      $NetBSD: Makefile,v 1.49 2010/10/20 14:50:22 tsutsui Exp $
 
 .include <bsd.own.mk>
 
@@ -70,7 +70,7 @@
 
 # Machine dependent section
 .if ${MACHINE_ARCH} == "i386" || \
-    ${MACHINE_ARCH} == "m68k"
+    ${MACHINE_CPU} == "m68k"
 SUBDIR+=       exec_aout
 .endif
 
@@ -118,7 +118,7 @@
 SUBDIR+=       pad
 .endif
 
-.if ${MACHINE_ARCH} == "m68k"
+.if ${MACHINE_CPU} == "m68k"
 SUBDIR+=       compat_aoutm68k
 #SUBDIR+=      compat_linux
 #SUBDIR+=      compat_sunos



Home | Main Index | Thread Index | Old Index