diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2010-04-26 11:25:53 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2010-04-26 11:25:53 +0000 |
commit | c3d9df945916f35a7cd7b6ca74e58b775df33885 (patch) | |
tree | 7823c813023a2c80e3fd926b045bdd5f04f8319c | |
parent | x86 stable wrt bug #310331 (diff) | |
download | gentoo-2-c3d9df945916f35a7cd7b6ca74e58b775df33885.tar.gz gentoo-2-c3d9df945916f35a7cd7b6ca74e58b775df33885.tar.bz2 gentoo-2-c3d9df945916f35a7cd7b6ca74e58b775df33885.zip |
Disable static libraries, since they would get removed anyway.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
-rw-r--r-- | sys-libs/libxcrypt/ChangeLog | 6 | ||||
-rw-r--r-- | sys-libs/libxcrypt/libxcrypt-2.4.ebuild | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/sys-libs/libxcrypt/ChangeLog b/sys-libs/libxcrypt/ChangeLog index c1f1fdcaf2e3..29a950e4a752 100644 --- a/sys-libs/libxcrypt/ChangeLog +++ b/sys-libs/libxcrypt/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-libs/libxcrypt # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libxcrypt/ChangeLog,v 1.8 2010/01/12 11:42:33 phajdan.jr Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libxcrypt/ChangeLog,v 1.9 2010/04/26 11:25:53 flameeyes Exp $ + + 26 Apr 2010; Diego E. Pettenò <flameeyes@gentoo.org> + libxcrypt-2.4.ebuild: + Disable static libraries, since they would get removed anyway. *libxcrypt-2.4 (12 Jan 2010) diff --git a/sys-libs/libxcrypt/libxcrypt-2.4.ebuild b/sys-libs/libxcrypt/libxcrypt-2.4.ebuild index 5a106bc3acaa..8308b9c7835d 100644 --- a/sys-libs/libxcrypt/libxcrypt-2.4.ebuild +++ b/sys-libs/libxcrypt/libxcrypt-2.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libxcrypt/libxcrypt-2.4.ebuild,v 1.1 2010/01/12 11:42:33 phajdan.jr Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libxcrypt/libxcrypt-2.4.ebuild,v 1.2 2010/04/26 11:25:53 flameeyes Exp $ EAPI=2 @@ -17,12 +17,12 @@ IUSE="" src_configure() { # Do not install into /usr so that tcb and pam can use us. - econf --libdir=/$(get_libdir) + econf --libdir=/$(get_libdir) --disable-static } src_install() { emake DESTDIR="${D}" install || die "emake failed" # Remove unneeded files from / - rm -f "${D}"/$(get_libdir)/"${PN}".{a,la} || die "rm failed" + rm -f "${D}"/$(get_libdir)/"${PN}".la || die "rm failed" } |