commit:     4bb467cf7876c1620faf956d9cad560d454206e8
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Wed Mar  7 12:53:23 2018 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Wed Mar  7 12:53:38 2018 +0000
URL:        https://gitweb.gentoo.org/proj/qt.git/commit/?id=4bb467cf

qt5-build.eclass: fix syntax error

 eclass/qt5-build.eclass | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass
index 3b961700..0e7111b5 100644
--- a/eclass/qt5-build.eclass
+++ b/eclass/qt5-build.eclass
@@ -545,8 +545,8 @@ qt5_base_configure() {
                -testsdir "${QT5_TESTSDIR}"
 
                # force appropriate compiler
-               if [[ ${QT5_MINOR_VERSION} -ge 10 ]]; then
-                       $(if use kernel_FreeBSD; then
+               $(if [[ ${QT5_MINOR_VERSION} -ge 10 ]]; then
+                       if use kernel_FreeBSD; then
                                if tc-is-gcc; then
                                        echo -platform freebsd-g++
                                elif tc-is-clang; then
@@ -558,8 +558,8 @@ qt5_base_configure() {
                                elif tc-is-clang; then
                                        echo -platform linux-clang
                                fi
-                       fi)
-               fi
+                       fi
+               fi)
 
                # configure in release mode by default,
                # override via the CONFIG qmake variable

Reply via email to