diff options
author | Sergey Popov <pinkbyte@gentoo.org> | 2013-09-06 07:31:38 +0000 |
---|---|---|
committer | Sergey Popov <pinkbyte@gentoo.org> | 2013-09-06 07:31:38 +0000 |
commit | 0712f083bfa4776cce2fc79f66aae75bba915c7e (patch) | |
tree | 406bdd49ef48e7048c2b23eb7495e702c403bc2c /net-fs/autofs | |
parent | Use correct phase names. (diff) | |
download | gentoo-2-0712f083bfa4776cce2fc79f66aae75bba915c7e.tar.gz gentoo-2-0712f083bfa4776cce2fc79f66aae75bba915c7e.tar.bz2 gentoo-2-0712f083bfa4776cce2fc79f66aae75bba915c7e.zip |
Respect AR and RANLIB, wrt bug #483716. Thanks to Agostino Sarubbo for discovering this issue and Dennis Lan for provided patch
(Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)
Diffstat (limited to 'net-fs/autofs')
-rw-r--r-- | net-fs/autofs/ChangeLog | 6 | ||||
-rw-r--r-- | net-fs/autofs/autofs-5.0.7-r4.ebuild | 7 |
2 files changed, 10 insertions, 3 deletions
diff --git a/net-fs/autofs/ChangeLog b/net-fs/autofs/ChangeLog index 33723ee0b794..9470c8c8aea6 100644 --- a/net-fs/autofs/ChangeLog +++ b/net-fs/autofs/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-fs/autofs # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v 1.160 2013/09/05 16:01:13 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v 1.161 2013/09/06 07:31:38 pinkbyte Exp $ + + 06 Sep 2013; Sergey Popov <pinkbyte@gentoo.org> autofs-5.0.7-r4.ebuild: + Respect AR and RANLIB, wrt bug #483716. Thanks to Agostino Sarubbo for + discovering this issue and Dennis Lan for provided patch 05 Sep 2013; Jeroen Roovers <jer@gentoo.org> autofs-5.0.7-r4.ebuild: Stable for HPPA (bug #483652). diff --git a/net-fs/autofs/autofs-5.0.7-r4.ebuild b/net-fs/autofs/autofs-5.0.7-r4.ebuild index 022e6d5acfd4..4b25beb03e17 100644 --- a/net-fs/autofs/autofs-5.0.7-r4.ebuild +++ b/net-fs/autofs/autofs-5.0.7-r4.ebuild @@ -1,12 +1,12 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/autofs-5.0.7-r4.ebuild,v 1.4 2013/09/05 16:01:13 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/autofs-5.0.7-r4.ebuild,v 1.5 2013/09/06 07:31:38 pinkbyte Exp $ EAPI=5 AUTOTOOLS_AUTORECONF=true -inherit autotools-utils linux-info multilib systemd +inherit autotools-utils linux-info multilib systemd toolchain-funcs PATCH_VER=3 [[ -n ${PATCH_VER} ]] && \ @@ -80,6 +80,8 @@ src_prepare() { } src_configure() { + # bug #483716 + tc-export AR # --with-confdir is for bug #361481 # --with-mapdir is for bug #385113 local myeconfargs=( @@ -97,6 +99,7 @@ src_configure() { --enable-ignore-busy --with-systemd systemddir="$(systemd_get_unitdir)" #bug #479492 + RANLIB="$(type -P $(tc-getRANLIB))" # bug #483716 ) autotools-utils_src_configure } |