aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Kubaj <pkubaj@FreeBSD.org>2021-06-28 20:27:23 +0000
committerPiotr Kubaj <pkubaj@FreeBSD.org>2021-06-28 20:27:23 +0000
commit5b24cc078bb1054edf160a203e52071d2a7d5a96 (patch)
treed633ce0850519d9a6cbb2f52df0e9dab65201e3a
parentd4f4dda64ac1bc92d4bd89f8e9b5356e07f5ad7f (diff)
downloadports-5b24cc078bb1054edf160a203e52071d2a7d5a96.tar.gz
ports-5b24cc078bb1054edf160a203e52071d2a7d5a96.zip
lang/ruby30: enable libunwind on all supported architectures
-rw-r--r--lang/ruby30/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/ruby30/Makefile b/lang/ruby30/Makefile
index 7c2fbf477d34..ced14b11cad7 100644
--- a/lang/ruby30/Makefile
+++ b/lang/ruby30/Makefile
@@ -92,7 +92,7 @@ _SUF2= ,${PORTEPOCH}
#.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