aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Kubaj <pkubaj@FreeBSD.org>2021-06-28 20:27:25 +0000
committerPiotr Kubaj <pkubaj@FreeBSD.org>2021-06-28 20:27:25 +0000
commit3d7556badcdcb42c0265a7b1f0551be80a13a35a (patch)
treedc6831009c8ea40025680ea5aa7d66d16e6101a5
parent5b24cc078bb1054edf160a203e52071d2a7d5a96 (diff)
downloadports-3d7556badcdcb42c0265a7b1f0551be80a13a35a.tar.gz
ports-3d7556badcdcb42c0265a7b1f0551be80a13a35a.zip
lang/ruby27: enable libunwind on all supported architectures
-rw-r--r--lang/ruby27/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/ruby27/Makefile b/lang/ruby27/Makefile
index 75ec067993cc..958018f91f76 100644
--- a/lang/ruby27/Makefile
+++ b/lang/ruby27/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