diff options
author | nia <nia@pkgsrc.org> | 2022-04-02 07:51:46 +0000 |
---|---|---|
committer | nia <nia@pkgsrc.org> | 2022-04-02 07:51:46 +0000 |
commit | 2f15b7ef32bd113aec6d7956d725a4201d4936e7 (patch) | |
tree | 20c8ffae6a1a9207a7a12d7ec3387f83bc499a74 /lang/ruby | |
parent | f393b9a3e426dcc229c96ed52fa4189f860e8a45 (diff) | |
download | pkgsrc-2f15b7ef32bd113aec6d7956d725a4201d4936e7.tar.gz |
ruby: Do not append an ABI on NetBSD to the arch-specific extension
directory. Failure seen in:
http://victory.netbsd.org/pkgsrc/packages/reports/2022Q1/evbarm7-9.0/20220330.2134/ruby31-base-3.1.1/install.log
Diffstat (limited to 'lang/ruby')
-rw-r--r-- | lang/ruby/rubyversion.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/ruby/rubyversion.mk b/lang/ruby/rubyversion.mk index b1ff961845a..91b12f48793 100644 --- a/lang/ruby/rubyversion.mk +++ b/lang/ruby/rubyversion.mk @@ -1,4 +1,4 @@ -# $NetBSD: rubyversion.mk,v 1.244 2022/02/23 15:53:25 jperkin Exp $ +# $NetBSD: rubyversion.mk,v 1.245 2022/04/02 07:51:46 nia Exp $ # # This file determines which Ruby version is used as a dependency for @@ -622,7 +622,7 @@ RUBY_ARCH?= ${MACHINE_GNU_ARCH}-${LOWER_OPSYS}${APPEND_ELF}${LOWER_OPSYS_VERSUFF # NetBSD does not append an OS version, so we have to do this OPSYS-specific. .if ${OPSYS} == "NetBSD" -RUBY_EXTARCH?= ${MACHINE_GNU_ARCH}-${LOWER_OPSYS}${APPEND_ELF}${LOWER_OPSYS_VERSUFFIX}${APPEND_ABI} +RUBY_EXTARCH?= ${MACHINE_GNU_ARCH}-${LOWER_OPSYS}${APPEND_ELF}${LOWER_OPSYS_VERSUFFIX} .else RUBY_EXTARCH?= ${MACHINE_GNU_ARCH}-${LOWER_OPSYS}${APPEND_ELF}-${LOWER_OPSYS_VERSUFFIX}${APPEND_ABI} .endif |