From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1FC9E139085 for ; Sat, 21 Jan 2017 02:13:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4DE78E0CE1; Sat, 21 Jan 2017 02:13:34 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2D196E0CE1 for ; Sat, 21 Jan 2017 02:13:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A05F3341657 for ; Sat, 21 Jan 2017 02:13:32 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A75102AD8 for ; Sat, 21 Jan 2017 02:13:30 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1484964771.d573fff1da8a7eafcc809911fb63a4ed289608bf.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/eutils.eclass X-VCS-Directories: eclass/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: d573fff1da8a7eafcc809911fb63a4ed289608bf X-VCS-Branch: master Date: Sat, 21 Jan 2017 02:13:30 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: a4d24375-62d6-45f8-83ef-6d25ed75888b X-Archives-Hash: 2f2484b8b29fc92f43a30cb34ad3577d commit: d573fff1da8a7eafcc809911fb63a4ed289608bf Author: Mike Frysinger gentoo org> AuthorDate: Sat Jan 21 02:12:51 2017 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Sat Jan 21 02:12:51 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d573fff1 eutils.eclass: move EAPI conditional funcs under the multiple inclusion protection check eclass/eutils.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/eutils.eclass b/eclass/eutils.eclass index d868467..b55f506 100644 --- a/eclass/eutils.eclass +++ b/eclass/eutils.eclass @@ -1620,8 +1620,6 @@ optfeature() { fi } -fi - check_license() { die "you no longer need this as portage supports ACCEPT_LICENSE itself" } @@ -1845,3 +1843,5 @@ in_iuse() { ;; esac + +fi