diff options
author | Kacper Kowalik <xarthisius@gentoo.org> | 2010-06-27 10:08:31 +0000 |
---|---|---|
committer | Kacper Kowalik <xarthisius@gentoo.org> | 2010-06-27 10:08:31 +0000 |
commit | cb8a7980cd3d5ca61b129e03b2651a57d7356ec3 (patch) | |
tree | 206e83d910675e6d9fb300ba4d29dbe7b22c6e60 /sci-libs/ufconfig | |
parent | x86 stable, bug 322791 (diff) | |
download | gentoo-2-cb8a7980cd3d5ca61b129e03b2651a57d7356ec3.tar.gz gentoo-2-cb8a7980cd3d5ca61b129e03b2651a57d7356ec3.tar.bz2 gentoo-2-cb8a7980cd3d5ca61b129e03b2651a57d7356ec3.zip |
Fix building static lib wrt bug 325821. Thanks to Markus Peloquin <markus@cs.wisc.edu> for reporting.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'sci-libs/ufconfig')
-rw-r--r-- | sci-libs/ufconfig/ChangeLog | 6 | ||||
-rw-r--r-- | sci-libs/ufconfig/ufconfig-3.5.0.ebuild | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/sci-libs/ufconfig/ChangeLog b/sci-libs/ufconfig/ChangeLog index b860105d7068..db9d63c211b4 100644 --- a/sci-libs/ufconfig/ChangeLog +++ b/sci-libs/ufconfig/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-libs/ufconfig # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/ufconfig/ChangeLog,v 1.21 2010/06/24 21:08:50 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/ufconfig/ChangeLog,v 1.22 2010/06/27 10:08:31 xarthisius Exp $ + + 27 Jun 2010; Kacper Kowalik <xarthisius@gentoo.org> ufconfig-3.5.0.ebuild: + Fix building static lib wrt bug 325821. Thanks to Markus Peloquin + <markus@cs.wisc.edu> for reporting. 24 Jun 2010; Pacho Ramos <pacho@gentoo.org> ufconfig-3.5.0.ebuild: stable amd64, bug 325183 diff --git a/sci-libs/ufconfig/ufconfig-3.5.0.ebuild b/sci-libs/ufconfig/ufconfig-3.5.0.ebuild index 4118e8ab4149..c7b955ef2488 100644 --- a/sci-libs/ufconfig/ufconfig-3.5.0.ebuild +++ b/sci-libs/ufconfig/ufconfig-3.5.0.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/sci-libs/ufconfig/ufconfig-3.5.0.ebuild,v 1.4 2010/06/24 21:08:50 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/ufconfig/ufconfig-3.5.0.ebuild,v 1.5 2010/06/27 10:08:31 xarthisius Exp $ inherit multilib toolchain-funcs @@ -26,7 +26,7 @@ src_compile() { echo "$(tc-getCC) ${CFLAGS} -c UFconfig.c -o UFconfig.o" $(tc-getCC) ${CFLAGS} -c UFconfig.c -o UFconfig.o || die echo "$(tc-getAR) libufconfig.a UFconfig.o" - $(tc-getAR) libufconfig.a UFconfig.o + $(tc-getAR) cr libufconfig.a UFconfig.o fi } |