Bug: https://bugs.gentoo.org/709368
Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
}
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() {
$(use_enable ruby)
$(use_enable static-libs static)
)
+ use arm && myeconfargs+=( --disable-inline ) # bug 709368
+
econf "${myeconfargs[@]}"
}