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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 22055158083 for ; Tue, 10 Sep 2024 11:28:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 21B16E29C1; Tue, 10 Sep 2024 11:28:38 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 039F2E29C1 for ; Tue, 10 Sep 2024 11:28:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0C170341E1C for ; Tue, 10 Sep 2024 11:28:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 64BA414D0 for ; Tue, 10 Sep 2024 11:28:35 +0000 (UTC) From: "Andrey Grozin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrey Grozin" Message-ID: <1725967689.c9ecfdb18f6b6000044815b80687a67391248b77.grozin@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/crqt-ng/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/crqt-ng/crqt-ng-1.0.14-r1.ebuild X-VCS-Directories: app-text/crqt-ng/ X-VCS-Committer: grozin X-VCS-Committer-Name: Andrey Grozin X-VCS-Revision: c9ecfdb18f6b6000044815b80687a67391248b77 X-VCS-Branch: master Date: Tue, 10 Sep 2024 11:28:35 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b9bfaf04-b812-4b09-9b13-204017d875c3 X-Archives-Hash: e996c4f06197181d03643281806f5559 commit: c9ecfdb18f6b6000044815b80687a67391248b77 Author: Andrey Grozin gentoo org> AuthorDate: Tue Sep 10 11:28:09 2024 +0000 Commit: Andrey Grozin gentoo org> CommitDate: Tue Sep 10 11:28:09 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9ecfdb1 app-text/crqt-ng: fix a typo Signed-off-by: Andrey Grozin gentoo.org> app-text/crqt-ng/crqt-ng-1.0.14-r1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-text/crqt-ng/crqt-ng-1.0.14-r1.ebuild b/app-text/crqt-ng/crqt-ng-1.0.14-r1.ebuild index 0c8500144809..5b43a9d0c3dc 100644 --- a/app-text/crqt-ng/crqt-ng-1.0.14-r1.ebuild +++ b/app-text/crqt-ng/crqt-ng-1.0.14-r1.ebuild @@ -46,11 +46,11 @@ src_prepare() { src_configure() { CMAKE_USE_DIR="${S}" CMAKE_BUILD_TYPE="Release" - local mycmakeargs= + local mycmakeargs if use qt6; then mycmakeargs=(-DUSE_QT=QT6) else - (-DUSE_QT=QT5) + mycmakeargs=(-DUSE_QT=QT5) fi cmake_src_configure }