From d4f4dda64ac1bc92d4bd89f8e9b5356e07f5ad7f Mon Sep 17 00:00:00 2001 From: Piotr Kubaj Date: Mon, 28 Jun 2021 20:27:21 +0000 Subject: [PATCH] lang/ruby26: enable libunwind on all supported architectures --- lang/ruby26/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/ruby26/Makefile b/lang/ruby26/Makefile index 06393d6096ef..25f90997ef22 100644 --- a/lang/ruby26/Makefile +++ b/lang/ruby26/Makefile @@ -93,7 +93,7 @@ CONFIGURE_ARGS+=--disable-dtrace .endif # keep in sync with all platforms where libunwind is available -.if (${ARCH} == aarch64 || ${ARCH} == amd64 || ${ARCH} == i386 || ${ARCH:Mpowerpc64*}) +.if ${ARCH} == aarch64 || ${ARCH} == amd64 || ${ARCH} == armv7 || ${ARCH} == i386 || ${ARCH} == powerpc64 || ${ARCH} == powerpc64le LIB_DEPENDS+= libunwind.so:devel/libunwind .endif