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 9BBBE1388C1 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 71BFD21C111; 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 0A20621C111 for ; Sat, 28 Nov 2015 18:58:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 113583408E5 for ; Sat, 28 Nov 2015 18:58:28 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3D0A0A86 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: <1448737060.cfaabf1b214fbe1c257bf12c20dc792f32421bc4.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: cfaabf1b214fbe1c257bf12c20dc792f32421bc4 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: 62bec8c3-2483-4839-aaeb-ebc92efd01fa X-Archives-Hash: 1b90caa461b3575dc3ed62abd38bd137 commit: cfaabf1b214fbe1c257bf12c20dc792f32421bc4 Author: Justin Lecher gentoo org> AuthorDate: Sat Nov 28 18:50:33 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sat Nov 28 18:57:40 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfaabf1b fortran-2.eclass: Only source eclass once Signed-off-by: Justin Lecher gentoo.org> eclass/fortran-2.eclass | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/eclass/fortran-2.eclass b/eclass/fortran-2.eclass index 3d80fe1..f26621e 100644 --- a/eclass/fortran-2.eclass +++ b/eclass/fortran-2.eclass @@ -27,6 +27,8 @@ # # FORTRAN_NEED_OPENMP=1 +if [[ ! ${_FORTRAN_2_CLASS} ]]; then + # @ECLASS-VARIABLE: FORTRAN_NEED_OPENMP # @DESCRIPTION: # Set to "1" in order to automatically have the eclass abort if the fortran @@ -257,3 +259,5 @@ case ${EAPI:-0} in *) die "EAPI=${EAPI} is not supported" ;; esac +_FORTRAN_2_ECLASS=1 +fi