commit: a5596388fbb1521d2b8e87c7357cc026909b0544 Author: Justin Lecher <jlec <AT> gentoo <DOT> org> AuthorDate: Sat Jan 30 15:45:46 2016 +0000 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org> CommitDate: Sat Jan 30 15:47:05 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5596388
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 <AT> gentoo.org> eclass/fortran-2.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/fortran-2.eclass b/eclass/fortran-2.eclass index 8627965..66b8100 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
