diff options
author | 2011-06-21 08:06:56 +0000 | |
---|---|---|
committer | 2011-06-21 08:06:56 +0000 | |
commit | 2ae45d3dec6872e2b729132bb6890c3f2211cfe9 (patch) | |
tree | c09945b3355e3fbd8691d2a00989bd782181b753 /eclass/fortran-2.eclass | |
parent | Added openmp support (diff) | |
download | gentoo-2-2ae45d3dec6872e2b729132bb6890c3f2211cfe9.tar.gz gentoo-2-2ae45d3dec6872e2b729132bb6890c3f2211cfe9.tar.bz2 gentoo-2-2ae45d3dec6872e2b729132bb6890c3f2211cfe9.zip |
Added EAPI=0 support to fortran.eclass
Diffstat (limited to 'eclass/fortran-2.eclass')
-rw-r--r-- | eclass/fortran-2.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/fortran-2.eclass b/eclass/fortran-2.eclass index fcd6bcc410ec..1ff1ba4788c9 100644 --- a/eclass/fortran-2.eclass +++ b/eclass/fortran-2.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/fortran-2.eclass,v 1.1 2011/06/21 06:44:02 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/fortran-2.eclass,v 1.2 2011/06/21 08:06:56 jlec Exp $ # Author Justin Lecher <jlec@gentoo.org> # Test functions provided by Sebastien Fabbro and Kacper Kowalik @@ -149,6 +149,6 @@ fortran-2_pkg_setup() { } case ${EAPI:-0} in - 1|2|3|4) EXPORT_FUNCTIONS pkg_setup ;; + 0|1|2|3|4) EXPORT_FUNCTIONS pkg_setup ;; *) die "EAPI=${EAPI} is not supported" ;; esac |