From 4a41f69e446e13c68acf3a4349aab663d98a479f Mon Sep 17 00:00:00 2001 From: q66 Date: Fri, 26 Mar 2021 21:54:10 +0100 Subject: [PATCH] erlang: disable hipe for all ppc64 --- srcpkgs/erlang/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/erlang/template b/srcpkgs/erlang/template index d60904161b5..f02e96d48bc 100644 --- a/srcpkgs/erlang/template +++ b/srcpkgs/erlang/template @@ -24,7 +24,7 @@ if [ -z "$CROSS_BUILD" ]; then fi case "$XBPS_TARGET_MACHINE" in - *-musl) configure_args+=" --disable-hipe" ;; + ppc64*|*-musl) configure_args+=" --disable-hipe" ;; esac pre_configure() {