diff options
author | Sam James <sam@gentoo.org> | 2021-04-02 16:41:39 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-04-03 16:53:37 +0100 |
commit | ead3a93c7864eac997c80b3623bd861d65ec9e4a (patch) | |
tree | 5df035e41a11cfb3b97aa9c3b72fd8b621a7c6ff /dev-libs | |
parent | net-mail/qmailadmin: sort inherit (diff) | |
download | gentoo-ead3a93c7864eac997c80b3623bd861d65ec9e4a.tar.gz gentoo-ead3a93c7864eac997c80b3623bd861d65ec9e4a.tar.bz2 gentoo-ead3a93c7864eac997c80b3623bd861d65ec9e4a.zip |
dev-libs/maloc: drop no-op USE=static-libs
We add --disable-static just to be sure though. We
were already unconditionally deleting both .la and .a,
so the USE flag did nothing.
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/maloc/maloc-1.5-r1.ebuild | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dev-libs/maloc/maloc-1.5-r1.ebuild b/dev-libs/maloc/maloc-1.5-r1.ebuild index 7c7351aab1b8..62b158098d87 100644 --- a/dev-libs/maloc/maloc-1.5-r1.ebuild +++ b/dev-libs/maloc/maloc-1.5-r1.ebuild @@ -12,7 +12,7 @@ S="${WORKDIR}/${PN}" SLOT="0" LICENSE="GPL-2" -IUSE="doc mpi static-libs" +IUSE="doc mpi" KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux" BDEPEND=" @@ -48,6 +48,7 @@ src_configure() { myeconfargs+=( --disable-triplet + --disable-static $(use_enable mpi) ) |