build-support/meson: Correct cpu_family values for POWER

Endianness is not included in the value.
This commit is contained in:
OPNA2608
2025-07-27 11:38:19 +02:00
committed by Alyssa Ross
parent 32a3cd4569
commit 96662c2adf

View File

@@ -11,6 +11,10 @@ let
"arm"
else if isx86_32 then
"x86"
else if isPower64 then
"ppc64"
else if isPower then
"ppc"
else
platform.uname.processor;