aboutsummaryrefslogtreecommitdiff
path: root/share/mk
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2022-01-25 19:37:29 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2022-01-25 19:37:29 +0000
commit42e51b158a945ffc216fc9c73f1f0cf6f47e3795 (patch)
treefb91909f9c1f114ae78ab9933395624e471e5608 /share/mk
parent0a902e4261bb2c10a148f1dab5f3e1f4ae8741f8 (diff)
downloadsrc-42e51b158a945ffc216fc9c73f1f0cf6f47e3795.tar.gz
src-42e51b158a945ffc216fc9c73f1f0cf6f47e3795.zip
Stop trying to strip 'eb' suffixes from ARM MACHINE_ARCH.
armeb is no longer a supported MACHINE_ARCH. Reviewed by: imp, emaste Sponsored by: The University of Cambridge, Google Inc. Differential Revision: https://reviews.freebsd.org/D34019
Diffstat (limited to 'share/mk')
-rw-r--r--share/mk/sys.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/mk/sys.mk b/share/mk/sys.mk
index 3426f8c0729a..cddbb0da584c 100644
--- a/share/mk/sys.mk
+++ b/share/mk/sys.mk
@@ -13,7 +13,7 @@ unix ?= We run FreeBSD, not UNIX.
# and/or endian. This is called MACHINE_CPU in NetBSD, but that's used
# for something different in FreeBSD.
#
-__TO_CPUARCH=C/arm(v[67])?(eb)?/arm/:C/powerpc(64|64le|spe)/powerpc/:C/riscv64(sf)?/riscv/
+__TO_CPUARCH=C/arm(v[67])?/arm/:C/powerpc(64|64le|spe)/powerpc/:C/riscv64(sf)?/riscv/
MACHINE_CPUARCH=${MACHINE_ARCH:${__TO_CPUARCH}}
.endif