diff options
author | Justin Lecher <jlec@gentoo.org> | 2014-09-20 19:12:51 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2014-09-20 19:12:51 +0000 |
commit | 7a287155c6e6a0b391786b86adbff28577072a43 (patch) | |
tree | 684fd737477eb0303df22ba05787a860de94634e /sci-libs/htslib | |
parent | sci-libs/htslib: Handle static-libs (diff) | |
download | gentoo-2-7a287155c6e6a0b391786b86adbff28577072a43.tar.gz gentoo-2-7a287155c6e6a0b391786b86adbff28577072a43.tar.bz2 gentoo-2-7a287155c6e6a0b391786b86adbff28577072a43.zip |
sci-libs/htslib: Fix static-libs handling
(Portage version: 2.2.13/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Diffstat (limited to 'sci-libs/htslib')
-rw-r--r-- | sci-libs/htslib/ChangeLog | 5 | ||||
-rw-r--r-- | sci-libs/htslib/htslib-1.0.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/sci-libs/htslib/ChangeLog b/sci-libs/htslib/ChangeLog index 93be619d5822..a00698420b80 100644 --- a/sci-libs/htslib/ChangeLog +++ b/sci-libs/htslib/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-libs/htslib # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/htslib/ChangeLog,v 1.2 2014/09/20 19:09:38 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/htslib/ChangeLog,v 1.3 2014/09/20 19:12:51 jlec Exp $ + + 20 Sep 2014; Justin Lecher <jlec@gentoo.org> htslib-1.0.ebuild: + Fix static-libs handling 20 Sep 2014; Justin Lecher <jlec@gentoo.org> htslib-1.0.ebuild: Handle static-libs diff --git a/sci-libs/htslib/htslib-1.0.ebuild b/sci-libs/htslib/htslib-1.0.ebuild index cdba43274cfe..5d30db518715 100644 --- a/sci-libs/htslib/htslib-1.0.ebuild +++ b/sci-libs/htslib/htslib-1.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/htslib/htslib-1.0.ebuild,v 1.2 2014/09/20 19:09:38 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/htslib/htslib-1.0.ebuild,v 1.3 2014/09/20 19:12:51 jlec Exp $ EAPI=5 @@ -32,7 +32,7 @@ src_install() { rm "${ED}/usr/share/man/man1/libhts.so.1" || die if ! use static-libs; then - find "${ED}" -delete || die + find "${ED}" -type f -name "*.a" -delete || die fi dodoc README |