commit: ef332c239ad8db53cb36a95ee7e7c474507bf03e Author: Mike Gilbert <floppym <AT> gentoo <DOT> org> AuthorDate: Fri Nov 1 15:01:57 2019 +0000 Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org> CommitDate: Fri Nov 1 16:22:55 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef332c23
net-wireless/iwd: skip eautoreconf for release builds Bug: https://bugs.gentoo.org/699042 Package-Manager: Portage-2.3.78_p4, Repoman-2.3.17_p100 Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org> Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org> net-wireless/iwd/iwd-9999.ebuild | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/net-wireless/iwd/iwd-9999.ebuild b/net-wireless/iwd/iwd-9999.ebuild index 72992be15e1..7f6f1bdeef4 100644 --- a/net-wireless/iwd/iwd-9999.ebuild +++ b/net-wireless/iwd/iwd-9999.ebuild @@ -2,11 +2,11 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=6 -inherit autotools flag-o-matic linux-info systemd +inherit flag-o-matic linux-info systemd if [[ ${PV} == *9999* ]]; then EGIT_REPO_URI="https://git.kernel.org/pub/scm/network/wireless/iwd.git" - inherit git-r3 + inherit autotools git-r3 else SRC_URI="https://www.kernel.org/pub/linux/network/wireless/${P}.tar.xz" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~sparc ~x86" @@ -110,7 +110,9 @@ src_unpack() { src_prepare() { default - eautoreconf + if [[ ${PV} == *9999* ]] ; then + eautoreconf + fi } src_configure() {
