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 128B31581C1 for ; Wed, 17 Jul 2024 05:43:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6454F2BC0B1; Wed, 17 Jul 2024 05:43:35 +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 46DDCE2B22 for ; Wed, 17 Jul 2024 05:43:35 +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 4B003340C8A for ; Wed, 17 Jul 2024 05:43:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A5FFF1E39 for ; Wed, 17 Jul 2024 05:43:32 +0000 (UTC) From: "Eli Schwartz" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Eli Schwartz" Message-ID: <1721194985.aa2b75b6d10a8b142202066fb20f4ef704f76d04.eschwartz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/ucx/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-cluster/ucx/ucx-1.13.1.ebuild X-VCS-Directories: sys-cluster/ucx/ X-VCS-Committer: eschwartz X-VCS-Committer-Name: Eli Schwartz X-VCS-Revision: aa2b75b6d10a8b142202066fb20f4ef704f76d04 X-VCS-Branch: master Date: Wed, 17 Jul 2024 05:43:32 +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: 99abd61b-a705-494a-a2c4-b0160621560a X-Archives-Hash: ad1d9a868548de7edac96adba0cf6004 commit: aa2b75b6d10a8b142202066fb20f4ef704f76d04 Author: Eli Schwartz gentoo org> AuthorDate: Tue Jul 16 22:32:43 2024 +0000 Commit: Eli Schwartz gentoo org> CommitDate: Wed Jul 17 05:43:05 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa2b75b6 sys-cluster/ucx: silence warning about nonexisting configure command The build system checks for doxygen, but even if doxygen is found it doesn't build a default target, nor install anything. In fact, there's missing Makefile dependencies if you try. Just tell configure to not even look. Closes: https://bugs.gentoo.org/732242 Signed-off-by: Eli Schwartz gentoo.org> sys-cluster/ucx/ucx-1.13.1.ebuild | 1 + 1 file changed, 1 insertion(+) diff --git a/sys-cluster/ucx/ucx-1.13.1.ebuild b/sys-cluster/ucx/ucx-1.13.1.ebuild index 19ced5b4b683..f4d9f8080c94 100644 --- a/sys-cluster/ucx/ucx-1.13.1.ebuild +++ b/sys-cluster/ucx/ucx-1.13.1.ebuild @@ -46,6 +46,7 @@ src_prepare() { src_configure() { BASE_CFLAGS="" econf \ + --disable-doxygen-doc \ --disable-compiler-opt \ --without-fuse3 \ --without-go \