From 76cc17458b35169490e533467b8ff064907dbf62 Mon Sep 17 00:00:00 2001 From: q66 Date: Fri, 10 Jan 2020 17:45:25 +0100 Subject: [PATCH] texstudio: fix build on ppc32 (crash handler fails to build) --- srcpkgs/texstudio/template | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/srcpkgs/texstudio/template b/srcpkgs/texstudio/template index b29b5fe630b..88df5425e15 100644 --- a/srcpkgs/texstudio/template +++ b/srcpkgs/texstudio/template @@ -27,6 +27,7 @@ if [ "$CROSS_BUILD" ]; then fi case "$XBPS_TARGET_MACHINE" in - aarch64*) + ppc64*) ;; + aarch64*|ppc*) configure_args+=" NO_CRASH_HANDLER=true" ;; esac