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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 897F3158094 for ; Sun, 14 Aug 2022 10:50:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 22E60E09DD; Sun, 14 Aug 2022 10:50:20 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 01A1EE09DD for ; Sun, 14 Aug 2022 10:50:19 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A94D23414B1 for ; Sun, 14 Aug 2022 10:50:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4CF0B5A1 for ; Sun, 14 Aug 2022 10:50:15 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1660474195.02f9638663383a2e6dd1ff32896785bca5e0fb5b.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-frameworks/kconfig/ X-VCS-Repository: proj/kde X-VCS-Files: kde-frameworks/kconfig/kconfig-9999.ebuild X-VCS-Directories: kde-frameworks/kconfig/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 02f9638663383a2e6dd1ff32896785bca5e0fb5b X-VCS-Branch: master Date: Sun, 14 Aug 2022 10:50:15 +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: 3bf562d1-986f-465b-9889-4cbac97a6c7b X-Archives-Hash: 22361ee7d31227d14098d95ab0067a27 commit: 02f9638663383a2e6dd1ff32896785bca5e0fb5b Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Aug 14 10:49:25 2022 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Aug 14 10:49:55 2022 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=02f96386 kde-frameworks/kconfig: Fix IUSE qml Upstream commit ee80eec19ad6cfc207b7970e2e6080ea00335d96 Signed-off-by: Andreas Sturmlechner gentoo.org> kde-frameworks/kconfig/kconfig-9999.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kde-frameworks/kconfig/kconfig-9999.ebuild b/kde-frameworks/kconfig/kconfig-9999.ebuild index f2eafa61cf..b4f9f6e5b0 100644 --- a/kde-frameworks/kconfig/kconfig-9999.ebuild +++ b/kde-frameworks/kconfig/kconfig-9999.ebuild @@ -32,7 +32,7 @@ DOCS=( DESIGN docs/{DESIGN.kconfig,options.md} ) src_configure() { local mycmakeargs=( -DKCONFIG_USE_DBUS=$(usex dbus) - $(cmake_use_find_package qml Qt5Qml) + -DKCONFIG_USE_QML=$(usex qml) ) ecm_src_configure }