diff options
author | Justin Lecher <jlec@gentoo.org> | 2016-01-30 16:45:46 +0100 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2016-01-30 16:47:05 +0100 |
commit | a5596388fbb1521d2b8e87c7357cc026909b0544 (patch) | |
tree | a49644a418212648173756b51d097cee77848517 /eclass/fortran-2.eclass | |
parent | dev-python/sympy: Better doc building and update virtualx.eclas usage (diff) | |
download | gentoo-a5596388fbb1521d2b8e87c7357cc026909b0544.tar.gz gentoo-a5596388fbb1521d2b8e87c7357cc026909b0544.tar.bz2 gentoo-a5596388fbb1521d2b8e87c7357cc026909b0544.zip |
fortran-2.eclass: Fix fortran-2_pkg_setup() for EAPI=6
case statement ignored EAPI > 5
Gentoo-Bugs: https://bugs.gentoo.org/show_bug.cgi?id=573368
Signed-off-by: Justin Lecher <jlec@gentoo.org>
Diffstat (limited to 'eclass/fortran-2.eclass')
-rw-r--r-- | eclass/fortran-2.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/fortran-2.eclass b/eclass/fortran-2.eclass index 86279652b1ac..66b81005c5a1 100644 --- a/eclass/fortran-2.eclass +++ b/eclass/fortran-2.eclass @@ -278,7 +278,7 @@ fortran-2_pkg_setup() { eqawarn "Please migrate your package to a higher EAPI" eqawarn "or file a bug at https://bugs.gentoo.org" _fortran-2_pkg_setup ;; - 4|5) + *) if [[ ${MERGE_TYPE} != binary ]]; then _fortran-2_pkg_setup fi |