sys-cluster/mpich2: disable static libs

Closes: https://bugs.gentoo.org/458474
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr>
Signed-off-by: David Seifert <soap@gentoo.org>
This commit is contained in:
Jakov Smolic
2020-11-17 00:21:03 +01:00
committed by David Seifert
parent e606af941b
commit dc3959609c

View File

@@ -1,4 +1,4 @@
# Copyright 1999-2017 Gentoo Foundation
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -51,7 +51,7 @@ src_prepare() {
}
src_configure() {
local c="--enable-shared"
local c="--enable-shared --disable-static"
# The configure statements can be somewhat confusing, as they
# don't all show up in the top level configure, however, they
@@ -109,4 +109,6 @@ src_install() {
if ! use doc; then
rm -rf "${D}"usr/share/doc/${PF}/www*
fi
find "${ED}" -name '*.la' -delete || die
}