From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C328F1382C5 for ; Wed, 7 Mar 2018 12:53:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DAB6FE08F3; Wed, 7 Mar 2018 12:53:48 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B7A9CE08F3 for ; Wed, 7 Mar 2018 12:53:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 87DAE335C0A for ; Wed, 7 Mar 2018 12:53:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 156C91EB for ; Wed, 7 Mar 2018 12:53:46 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1520427218.4bb467cf7876c1620faf956d9cad560d454206e8.kensington@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: eclass/ X-VCS-Repository: proj/qt X-VCS-Files: eclass/qt5-build.eclass X-VCS-Directories: eclass/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 4bb467cf7876c1620faf956d9cad560d454206e8 X-VCS-Branch: master Date: Wed, 7 Mar 2018 12:53:46 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: ad341112-822a-4ad2-9424-04511578c0e6 X-Archives-Hash: a7c50d8c25d6dd518d4604c1bbabd59a commit: 4bb467cf7876c1620faf956d9cad560d454206e8 Author: Michael Palimaka gentoo org> AuthorDate: Wed Mar 7 12:53:23 2018 +0000 Commit: Michael Palimaka gentoo 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