build-style/meson: use correct endian on musl ppc64

This commit is contained in:
q66 2019-04-27 13:58:16 +02:00 committed by Jürgen Buchmüller
parent 2f206ef38c
commit 53b1190139

View file

@ -23,10 +23,10 @@ do_patch() {
i686*) i686*)
_MESON_CPU_FAMILY=x86 _MESON_CPU_FAMILY=x86
;; ;;
ppc64le) ppc64le*)
_MESON_CPU_FAMILY=ppc64 _MESON_CPU_FAMILY=ppc64
;; ;;
ppc64) ppc64*)
_MESON_TARGET_ENDIAN=big _MESON_TARGET_ENDIAN=big
_MESON_CPU_FAMILY=ppc64 _MESON_CPU_FAMILY=ppc64
;; ;;