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 75B0915817D for ; Wed, 19 Jun 2024 15:19:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B9201E2A56; Wed, 19 Jun 2024 15:19:48 +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 9C20CE2A56 for ; Wed, 19 Jun 2024 15:19:48 +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 AEF4533BEB9 for ; Wed, 19 Jun 2024 15:19:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 048721C7B for ; Wed, 19 Jun 2024 15:19:46 +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: <1718810343.79830032e9739f9f7f5e82d02bf87eb6eb61ebbb.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/accounts-qml/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/accounts-qml/accounts-qml-0.7_p20231028.ebuild X-VCS-Directories: net-libs/accounts-qml/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 79830032e9739f9f7f5e82d02bf87eb6eb61ebbb X-VCS-Branch: master Date: Wed, 19 Jun 2024 15:19: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 86aaaa61-c7e1-49e4-9837-5fc3adbbd78a X-Archives-Hash: ea9458e76d630393c56199d1b9a2fcb0 commit: 79830032e9739f9f7f5e82d02bf87eb6eb61ebbb Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Jun 19 15:19:03 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Jun 19 15:19:03 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79830032 net-libs/accounts-qml: Fix build w/ USE=doc Closes: https://bugs.gentoo.org/934547 Signed-off-by: Andreas Sturmlechner gentoo.org> net-libs/accounts-qml/accounts-qml-0.7_p20231028.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net-libs/accounts-qml/accounts-qml-0.7_p20231028.ebuild b/net-libs/accounts-qml/accounts-qml-0.7_p20231028.ebuild index 7df58aee3efa..2f9d7038ccc5 100644 --- a/net-libs/accounts-qml/accounts-qml-0.7_p20231028.ebuild +++ b/net-libs/accounts-qml/accounts-qml-0.7_p20231028.ebuild @@ -109,7 +109,7 @@ src_compile() { if use doc; then local qtanybindir if has_version "dev-qt/qttools:6[qdoc]"; then - qtanybindir="$(qt6_get_libdir)" + qtanybindir="$(qt6_get_libdir)/qt6/bin/" elif has_version "dev-qt/qdoc:5"; then qtanybindir="$(qt5_get_bindir)" else @@ -126,6 +126,6 @@ src_install() { local QT_QPA_PLATFORM=offscreen multibuild_foreach_variant my_src_install - use doc && local HTML_DOCS=( doc/html ) + use doc && local HTML_DOCS=( doc ) einstalldocs }