From: Andreas Sturmlechner Date: Sat, 28 Mar 2020 12:54:04 +0000 (+0100) Subject: sci-libs/geos: --disable-inline with arm X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=4c209a2af3ab2ed1e8ed5d75e05171cab73da82f;p=gentoo.git sci-libs/geos: --disable-inline with arm Bug: https://bugs.gentoo.org/709368 Package-Manager: Portage-2.3.96, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner --- diff --git a/sci-libs/geos/geos-3.8.0-r1.ebuild b/sci-libs/geos/geos-3.8.0-r1.ebuild index 3992d7a58cfd..e8fc86859c78 100644 --- a/sci-libs/geos/geos-3.8.0-r1.ebuild +++ b/sci-libs/geos/geos-3.8.0-r1.ebuild @@ -33,10 +33,14 @@ src_prepare() { } src_configure() { - econf \ - --disable-python \ - $(use_enable ruby) \ + local myeconfargs=( + --disable-python + $(use_enable ruby) $(use_enable static-libs static) + ) + use arm && myeconfargs+=( --disable-inline ) # bug 709368 + + econf "${myeconfargs[@]}" } src_compile() { diff --git a/sci-libs/geos/geos-3.8.1.ebuild b/sci-libs/geos/geos-3.8.1.ebuild index ad70d2dd21ca..f19227d4b289 100644 --- a/sci-libs/geos/geos-3.8.1.ebuild +++ b/sci-libs/geos/geos-3.8.1.ebuild @@ -34,6 +34,8 @@ src_configure() { $(use_enable ruby) $(use_enable static-libs static) ) + use arm && myeconfargs+=( --disable-inline ) # bug 709368 + econf "${myeconfargs[@]}" }