diff options
author | David Seifert <soap@gentoo.org> | 2017-03-01 21:29:40 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-03-01 21:35:01 +0100 |
commit | a86ad55de4ad64caeac2f6ca29a6bf0316894191 (patch) | |
tree | db182c503425ae840a43242a9d962f23a5633f46 /sci-libs | |
parent | sci-libs/libmuscle: Remove old (diff) | |
download | gentoo-a86ad55de4ad64caeac2f6ca29a6bf0316894191.tar.gz gentoo-a86ad55de4ad64caeac2f6ca29a6bf0316894191.tar.bz2 gentoo-a86ad55de4ad64caeac2f6ca29a6bf0316894191.zip |
sci-libs/cxsparse: Call einstalldocs in multilib_src_install_all
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/cxsparse/cxsparse-3.1.2-r1.ebuild (renamed from sci-libs/cxsparse/cxsparse-3.1.2.ebuild) | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sci-libs/cxsparse/cxsparse-3.1.2.ebuild b/sci-libs/cxsparse/cxsparse-3.1.2-r1.ebuild index 0ee9ba903304..7ebc9be5c789 100644 --- a/sci-libs/cxsparse/cxsparse-3.1.2.ebuild +++ b/sci-libs/cxsparse/cxsparse-3.1.2-r1.ebuild @@ -19,13 +19,13 @@ DEPEND="${RDEPEND} virtual/pkgconfig" multilib_src_configure() { - ECONF_SOURCE="${S}" \ - econf \ + ECONF_SOURCE="${S}" econf \ $(use_enable static-libs static) } multilib_src_install_all() { - if ! use static-libs; then - find "${ED}" -name "*.la" -delete || die - fi + einstalldocs + + # package provides .pc files + find "${D}" -name '*.la' -delete || die } |