Module Name:    src
Committed By:   thorpej
Date:           Sat Mar  7 18:08:48 UTC 2020

Modified Files:
        src/sys/conf: files

Log Message:
Fix MIPS builds by working around an apparent bug in config(8)'s elif
handling.


To generate a diff of this commit:
cvs rdiff -u -r1.1259 -r1.1260 src/sys/conf/files

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

Modified files:

Index: src/sys/conf/files
diff -u src/sys/conf/files:1.1259 src/sys/conf/files:1.1260
--- src/sys/conf/files:1.1259	Thu Mar  5 21:08:36 2020
+++ src/sys/conf/files	Sat Mar  7 18:08:47 2020
@@ -1,4 +1,4 @@
-#	$NetBSD: files,v 1.1259 2020/03/05 21:08:36 pgoyette Exp $
+#	$NetBSD: files,v 1.1260 2020/03/07 18:08:47 thorpej Exp $
 #	@(#)files.newconf	7.5 (Berkeley) 5/10/93
 
 version 	20171118
@@ -169,11 +169,13 @@ defflag				COMPAT_ULTRIX: COMPAT_50
 # other users of COMPAT_NETBSD32 need EXEC_AOUT
 ifdef mips
 defflag				COMPAT_NETBSD32
-elifdef aarch64
+else
+ifdef aarch64
 defflag				COMPAT_NETBSD32
 else
 defflag				COMPAT_NETBSD32	: EXEC_AOUT
 endif
+endif
 
 defflag				COMPAT_SYSV
 defflag				SYSV_IPC	: SYSVSHM, SYSVSEM, SYSVMSG

Reply via email to