Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/freebsd/freebsd-src.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/cddl
diff options
context:
space:
mode:
authorJessica Clarke <jrtc27@FreeBSD.org>2022-07-01 03:30:26 +0300
committerJessica Clarke <jrtc27@FreeBSD.org>2022-07-01 03:30:26 +0300
commit9921563f43a924d21c7bf43db4a34e724577db95 (patch)
tree654bd813d05a09341a3b90ac01ac1c117269384e /cddl
parent9aa02d5120ab02bcbbc16fddb63e575df4ed6f61 (diff)
libicp: Fix build for powerpc64le
The C sources use the assembly routines for little-endian powerpc64, and the assembly files have ppc64le in their names, but the guard here was for big-endian powerpc64. Fixes: 1f1e2261e341 ("zfs: merge openzfs/zfs@deb121309")
Diffstat (limited to 'cddl')
-rw-r--r--cddl/lib/libicp/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/cddl/lib/libicp/Makefile b/cddl/lib/libicp/Makefile
index 5b316453af9a..58ebb292c946 100644
--- a/cddl/lib/libicp/Makefile
+++ b/cddl/lib/libicp/Makefile
@@ -28,7 +28,7 @@ ASM_SOURCES_C =
ASM_SOURCES_AS = \
asm-aarch64/blake3/b3_aarch64_sse2.S \
asm-aarch64/blake3/b3_aarch64_sse41.S
-.elif ${MACHINE_ARCH} == "powerpc64"
+.elif ${MACHINE_ARCH} == "powerpc64le"
ASM_SOURCES_C =
ASM_SOURCES_AS = \
asm-ppc64/blake3/b3_ppc64le_sse2.S \