Module Name:    src
Committed By:   christos
Date:           Thu Mar  5 15:58:34 UTC 2020

Modified Files:
        src/sys/modules/compat_netbsd32: Makefile

Log Message:
disable a.out on aarch64


To generate a diff of this commit:
cvs rdiff -u -r1.30 -r1.31 src/sys/modules/compat_netbsd32/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/compat_netbsd32/Makefile
diff -u src/sys/modules/compat_netbsd32/Makefile:1.30 src/sys/modules/compat_netbsd32/Makefile:1.31
--- src/sys/modules/compat_netbsd32/Makefile:1.30	Wed Nov 20 14:37:54 2019
+++ src/sys/modules/compat_netbsd32/Makefile	Thu Mar  5 10:58:33 2020
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.30 2019/11/20 19:37:54 pgoyette Exp $
+#	$NetBSD: Makefile,v 1.31 2020/03/05 15:58:33 christos Exp $
 
 .include "../Makefile.inc"
 .include "../Makefile.assym"
@@ -43,7 +43,8 @@ SRCS+=	netbsd32_time.c		netbsd32_wait.c	
 SRCS+=	netbsd32_vm.c
 SRCS+=	netbsd32_module.c
 
-.if ${MACHINE_CPU} != "mips" && ${MACHINE_CPU} != "powerpc"
+.if ${MACHINE_CPU} != "mips" && ${MACHINE_CPU} != "powerpc" && \
+    ${MACHINE_CPU} != "aarch64"
 CPPFLAGS+=	-DEXEC_AOUT -DCOMPAT_NOMID
 SRCS+=	netbsd32_exec_aout.c
 .endif

Reply via email to