From 828d9b7217f9ceb1c5f5ee263e9e33594cfe65da Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Mon, 6 Apr 2020 21:56:54 +0200 Subject: [PATCH] ruby: fix build on arm*-musl. --- srcpkgs/ruby/template | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/srcpkgs/ruby/template b/srcpkgs/ruby/template index b5eb453007..137d46a311 100644 --- a/srcpkgs/ruby/template +++ b/srcpkgs/ruby/template @@ -30,6 +30,11 @@ case "$XBPS_TARGET_MACHINE" in ;; esac +case "$XBPS_TARGET_MACHINE" in + arm*-musl) # Default is ucontext + configure_args+=" --with-coroutine=arm32" + ;; +esac if [ "$CROSS_BUILD" ]; then hostmakedepends+=" ruby"