commit:     1a0596eeb5043996b42edd6915d9faae1a0b19b6
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 28 18:51:17 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sat Nov 28 18:57:46 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a0596ee

fortran-2.eclass: Fix whitespaces

Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>

 eclass/fortran-2.eclass | 32 ++++++++++++++++----------------
 1 file changed, 16 insertions(+), 16 deletions(-)

diff --git a/eclass/fortran-2.eclass b/eclass/fortran-2.eclass
index f26621e..ac89bf1 100644
--- a/eclass/fortran-2.eclass
+++ b/eclass/fortran-2.eclass
@@ -213,23 +213,23 @@ _fortran_test_function() {
 # _The_ fortran-2_pkg_setup() code
 _fortran-2_pkg_setup() {
        for _f_use in ${FORTRAN_NEEDED}; do
-       case ${_f_use} in
-       always)
+       case ${_f_use} in
+               always)
+                       _fortran_test_function && break
+                       ;;
+               no)
+                       einfo "Forcing fortran support off"
+                       break
+                       ;;
+               *)
+                       if use ${_f_use}; then
                                _fortran_test_function && break
-                ;;
-          no)
-                               einfo "Forcing fortran support off"
-                               break
-                ;;
-          *)
-                               if use ${_f_use}; then
-                                       _fortran_test_function && break
-                               else
-                                       unset FC
-                                       unset F77
-                               fi
-             ;;
-          esac
+                       else
+                               unset FC
+                               unset F77
+                       fi
+                       ;;
+               esac
        done
 }
 

Reply via email to