git: 3916fdd2f2c8 - main - opts: fix silly typo
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 10 Mar 2023 16:02:47 UTC
The branch main has been updated by imp:
URL: https://cgit.FreeBSD.org/src/commit/?id=3916fdd2f2c84df7732bdddb9c5f4bcc0aa8572d
commit 3916fdd2f2c84df7732bdddb9c5f4bcc0aa8572d
Author: Warner Losh <imp@FreeBSD.org>
AuthorDate: 2023-03-10 16:00:38 +0000
Commit: Warner Losh <imp@FreeBSD.org>
CommitDate: 2023-03-10 16:00:38 +0000
opts: fix silly typo
It's powerpcspe not powerpcspc
Pointy Hat To: imp
Noticed by: jhibbits
Fixes: 41cf798e8206
Sponsored by: Netflix
---
share/mk/src.opts.mk | 2 +-
sys/conf/kern.opts.mk | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/share/mk/src.opts.mk b/share/mk/src.opts.mk
index 1b667229fa4c..7cd1ef9731fc 100644
--- a/share/mk/src.opts.mk
+++ b/share/mk/src.opts.mk
@@ -357,7 +357,7 @@ BROKEN_OPTIONS+= OFED
.endif
# ZFS is broken on 32-bit powerpc (missing atomics), but works on 64-bit
-.if ${__T} == "powerpc" || ${__T} == "powerpcspc"
+.if ${__T} == "powerpc" || ${__T} == "powerpcspe"
BROKEN_OPTIONS+= ZFS LOADER_ZFS
.endif
diff --git a/sys/conf/kern.opts.mk b/sys/conf/kern.opts.mk
index 8d7bfe771004..25057dcbb8d9 100644
--- a/sys/conf/kern.opts.mk
+++ b/sys/conf/kern.opts.mk
@@ -79,7 +79,7 @@ BROKEN_OPTIONS+= INIT_ALL_ZERO
.endif
# ZFS is broken on 32-bit powerpc, missing atomics
-.if ${MACHINE_ARCH} == "powerpc" || ${MACHINE_ARCH} == "powerpcspc"
+.if ${MACHINE_ARCH} == "powerpc" || ${MACHINE_ARCH} == "powerpcspe"
BROKEN_OPTIONS+= ZFS
.endif