From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 616971384B4 for ; Sat, 28 Nov 2015 18:58:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 19CD821C114; Sat, 28 Nov 2015 18:58:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7506821C111 for ; Sat, 28 Nov 2015 18:58:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 67258340906 for ; Sat, 28 Nov 2015 18:58:27 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 716C6ABD for ; Sat, 28 Nov 2015 18:58:24 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1448737080.e3484f380472e2e3e87cc32a16927a2109d48c4c.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/fortran-2.eclass X-VCS-Directories: eclass/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: e3484f380472e2e3e87cc32a16927a2109d48c4c X-VCS-Branch: master Date: Sat, 28 Nov 2015 18:58:24 +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: edf2664f-dd1f-4b14-84fa-b875b3b6b71e X-Archives-Hash: 0db1a8043fbaf3f279edebd430d31a75 commit: e3484f380472e2e3e87cc32a16927a2109d48c4c Author: Justin Lecher gentoo org> AuthorDate: Sat Nov 28 18:58:00 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sat Nov 28 18:58:00 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3484f38 fortran-2.eclass: Fix for missing case end Signed-off-by: Justin Lecher gentoo.org> eclass/fortran-2.eclass | 1 + 1 file changed, 1 insertion(+) diff --git a/eclass/fortran-2.eclass b/eclass/fortran-2.eclass index 6f3c4b2..b0fe3f0 100644 --- a/eclass/fortran-2.eclass +++ b/eclass/fortran-2.eclass @@ -70,6 +70,7 @@ for _f_use in ${FORTRAN_NEEDED}; do ;; test) DEPEND+=" ${_f_use}? ( virtual/fortran )" + ;; *) DEPEND+=" ${_f_use}? ( virtual/fortran )" RDEPEND+=" ${_f_use}? ( virtual/fortran )"