From 70fcc0dfba2ce7a56e22705298a3da854944ebe3 Mon Sep 17 00:00:00 2001 From: q66 Date: Thu, 20 Dec 2018 18:22:11 +0100 Subject: [PATCH] sysprof: break on ppc64 musl --- srcpkgs/sysprof/template | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/srcpkgs/sysprof/template b/srcpkgs/sysprof/template index cc86e52b86..ac02dcf717 100644 --- a/srcpkgs/sysprof/template +++ b/srcpkgs/sysprof/template @@ -14,8 +14,12 @@ distfiles="${GNOME_SITE}/${pkgname}/${version%.*}/${pkgname}-${version}.tar.xz" checksum=e90878e5a509bd79d170a7a51d47cc5508ab1363afaf0d97654373dfd9c8ba0b case "$XBPS_TARGET_MACHINE" in - aarch64-musl|x86_64-musl) broken="__WORDSIZE definitions aren't recognized" ;; - x64_64-musl|aarch64-musl) CFLAGS="-D__WORDSIZE=64" ;; + aarch64-musl|x86_64-musl|ppc64le-musl|ppc64-musl) + broken="__WORDSIZE definitions aren't recognized" + ;; + x64_64-musl|aarch64-musl|ppc64le-musl|ppc64-musl) + CFLAGS="-D__WORDSIZE=64" + ;; *-musl) CFLAGS="-D__WORDSIZE=32" ;; esac