diff options
author | Michał Górny <mgorny@gentoo.org> | 2014-04-28 17:54:59 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2014-04-28 17:54:59 +0000 |
commit | 0385732712da0d6afbb820285e4e2f175637f056 (patch) | |
tree | 7117a229c27fd4a762e52b00fa66ef10c2e5b519 /sys-fs/eudev/eudev-1.3.ebuild | |
parent | Replace multilib_build_binaries with multilib_is_native_abi, in order to put ... (diff) | |
download | historical-0385732712da0d6afbb820285e4e2f175637f056.tar.gz historical-0385732712da0d6afbb820285e4e2f175637f056.tar.bz2 historical-0385732712da0d6afbb820285e4e2f175637f056.zip |
Replace multilib_build_binaries with multilib_is_native_abi, in order to put an end to the confusion introduced by having two functions, the proper one suggesting it is just for binaries.
Package-Manager: portage-2.2.10/cvs/Linux x86_64
Manifest-Sign-Key: 0xEFB4464E!
Diffstat (limited to 'sys-fs/eudev/eudev-1.3.ebuild')
-rw-r--r-- | sys-fs/eudev/eudev-1.3.ebuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys-fs/eudev/eudev-1.3.ebuild b/sys-fs/eudev/eudev-1.3.ebuild index 55df8d44f2a5..af5418c7d2a0 100644 --- a/sys-fs/eudev/eudev-1.3.ebuild +++ b/sys-fs/eudev/eudev-1.3.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/sys-fs/eudev/eudev-1.3.ebuild,v 1.16 2014/03/28 18:28:39 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/eudev/eudev-1.3.ebuild,v 1.17 2014/04/28 17:53:15 mgorny Exp $ EAPI="5" @@ -140,7 +140,7 @@ multilib_src_configure() # Only build libudev for non-native_abi, and only install it to libdir, # that means all options only apply to native_abi - if multilib_build_binaries; then econf_args+=( + if multilib_is_native_abi; then econf_args+=( --with-rootlibdir=/$(get_libdir) $(use_enable doc gtk-doc) $(use_enable gudev) @@ -161,7 +161,7 @@ multilib_src_configure() multilib_src_compile() { - if ! multilib_build_binaries; then + if ! multilib_is_native_abi; then cd src/libudev || die "Could not change directory" fi emake @@ -169,7 +169,7 @@ multilib_src_compile() multilib_src_install() { - if ! multilib_build_binaries; then + if ! multilib_is_native_abi; then cd src/libudev || die "Could not change directory" fi emake DESTDIR="${D}" install @@ -182,7 +182,7 @@ multilib_src_test() # but sandbox seems to evaluate the paths of the test i/o instead of the # paths of the actual i/o that results. # also only test for native abi - if multilib_build_binaries; then + if multilib_is_native_abi; then addread /sys addwrite /dev addwrite /run |