Module Name:    src
Committed By:   mrg
Date:           Sun Sep 13 23:33:21 UTC 2020

Modified Files:
        src/share/mk: bsd.own.mk

Log Message:
fix syntax errors in previous.


To generate a diff of this commit:
cvs rdiff -u -r1.1213 -r1.1214 src/share/mk/bsd.own.mk

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

Modified files:

Index: src/share/mk/bsd.own.mk
diff -u src/share/mk/bsd.own.mk:1.1213 src/share/mk/bsd.own.mk:1.1214
--- src/share/mk/bsd.own.mk:1.1213	Sun Sep 13 23:32:04 2020
+++ src/share/mk/bsd.own.mk	Sun Sep 13 23:33:21 2020
@@ -1,4 +1,4 @@
-#	$NetBSD: bsd.own.mk,v 1.1213 2020/09/13 23:32:04 mrg Exp $
+#	$NetBSD: bsd.own.mk,v 1.1214 2020/09/13 23:33:21 mrg Exp $
 
 # This needs to be before bsd.init.mk
 .if defined(BSD_MK_COMPAT_FILE)
@@ -64,7 +64,7 @@ TOOLCHAIN_MISSING?=	no
 # What GCC is used?
 #
 .if ${MACHINE_ARCH} == "x86_64" || ${MACHINE_ARCH} == "i386" || \
-    ${MACHINE_CPU} == "aarch64" || ${MACHINE_CPU} == "arm" ||
+    ${MACHINE_CPU} == "aarch64" || ${MACHINE_CPU} == "arm" || \
     ${MACHINE_CPU} == "riscv" || ${MACHINE} == "ia64"
 HAVE_GCC?=	9
 .else
@@ -95,7 +95,7 @@ MKGCCCMDS?=	no
 #
 # What binutils is used?
 #
-.if ${MACHINE_CPU} == "sh3" ${MACHINE_CPU} == "m68k"
+.if ${MACHINE_CPU} == "sh3" || ${MACHINE_CPU} == "m68k"
 HAVE_BINUTILS?=	231
 .endif
 HAVE_BINUTILS?=	234

Reply via email to