lang/ruby26: fix build on powerpc

powerpc requires GCC after all to build this port:
building .ext/include/powerpc-freebsd13/rb_mjit_min_header-2.6.5.h
./miniruby -I./lib -I. -I.ext/common  ./tool/transform_mjit_header.rb "cc " rb_mjit_header.h .ext/include/powerpc-freebsd13/rb_mjit_min_header-2.6.5.h
*** Signal 6
This commit is contained in:
Piotr Kubaj
2020-01-09 18:05:12 +00:00
parent b46f528c1d
commit 2fbd51f43e

View File

@@ -98,7 +98,7 @@ CONFIGURE_ARGS+=--disable-dtrace
LIB_DEPENDS+= libunwind.so:devel/libunwind
.endif
.if defined(PPC_ABI) && ${PPC_ABI} == ELFv1
.if (defined(PPC_ABI) && ${PPC_ABI} == ELFv1) || ${ARCH} == powerpc
USE_GCC= yes
.endif