diff options
author | Michał Górny <mgorny@gentoo.org> | 2014-01-04 22:53:51 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2014-01-04 22:53:51 +0000 |
commit | 87a4a65ed38b039656ab160cf170caa924eaf94b (patch) | |
tree | 022f46d0272a4d8751fff00228001773f234ad6f /dev-libs/expat | |
parent | Replace the explicit ABI==DEFAULT_ABI check with multilib_build_binaries ecla... (diff) | |
download | gentoo-2-87a4a65ed38b039656ab160cf170caa924eaf94b.tar.gz gentoo-2-87a4a65ed38b039656ab160cf170caa924eaf94b.tar.bz2 gentoo-2-87a4a65ed38b039656ab160cf170caa924eaf94b.zip |
Replace the explicit ABI==DEFAULT_ABI check with multilib_build_binaries eclass function.
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
Diffstat (limited to 'dev-libs/expat')
-rw-r--r-- | dev-libs/expat/ChangeLog | 6 | ||||
-rw-r--r-- | dev-libs/expat/expat-2.1.0-r3.ebuild | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/dev-libs/expat/ChangeLog b/dev-libs/expat/ChangeLog index 9f7ee7dbcadc..3cb030fcbcd3 100644 --- a/dev-libs/expat/ChangeLog +++ b/dev-libs/expat/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-libs/expat # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/expat/ChangeLog,v 1.158 2014/01/03 04:18:02 mattst88 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/expat/ChangeLog,v 1.159 2014/01/04 22:53:51 mgorny Exp $ + + 04 Jan 2014; Michał Górny <mgorny@gentoo.org> expat-2.1.0-r3.ebuild: + Replace the explicit ABI==DEFAULT_ABI check with multilib_build_binaries + eclass function. 03 Jan 2014; Matt Turner <mattst88@gentoo.org> expat-2.1.0-r3.ebuild: alpha stable, bug 492702. diff --git a/dev-libs/expat/expat-2.1.0-r3.ebuild b/dev-libs/expat/expat-2.1.0-r3.ebuild index 3e8d2393a285..7af1707df904 100644 --- a/dev-libs/expat/expat-2.1.0-r3.ebuild +++ b/dev-libs/expat/expat-2.1.0-r3.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/dev-libs/expat/expat-2.1.0-r3.ebuild,v 1.10 2014/01/03 04:18:02 mattst88 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/expat/expat-2.1.0-r3.ebuild,v 1.11 2014/01/04 22:53:51 mgorny Exp $ EAPI=5 inherit eutils libtool multilib toolchain-funcs multilib-minimal @@ -72,7 +72,7 @@ multilib_src_install() { popd >/dev/null fi - if [[ ${ABI} == ${DEFAULT_ABI} ]] ; then + if multilib_build_binaries ; then # libgeom in /lib and ifconfig in /sbin require libexpat on FreeBSD since # we stripped the libbsdxml copy starting from freebsd-lib-8.2-r1 use elibc_FreeBSD && gen_usr_ldscript -a expat |