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 C2A1D1382C5 for ; Mon, 15 Mar 2021 11:39:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CE238E0822; Mon, 15 Mar 2021 11:39:37 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 582DDE0822 for ; Mon, 15 Mar 2021 11:39:37 +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 1F4CF340DBB for ; Mon, 15 Mar 2021 11:39:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 915474A6 for ; Mon, 15 Mar 2021 11:39:34 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1615808348.6ddf200d6670ca82f7397bb898aa35ba1137c259.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-doc/doxygen/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-doc/doxygen/doxygen-1.9.1.ebuild X-VCS-Directories: app-doc/doxygen/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 6ddf200d6670ca82f7397bb898aa35ba1137c259 X-VCS-Branch: master Date: Mon, 15 Mar 2021 11:39:34 +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: f44285c8-1779-4615-8261-07823c8c6d04 X-Archives-Hash: 72349fd2fe05ab4349cf7d01ca50b317 commit: 6ddf200d6670ca82f7397bb898aa35ba1137c259 Author: Sam James gentoo org> AuthorDate: Mon Mar 15 11:38:38 2021 +0000 Commit: Sam James gentoo org> CommitDate: Mon Mar 15 11:39:08 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ddf200d app-doc/doxygen: fix USE=doc build * Build source code first, as per upstream * Use -j1 when building docs to avoid strange race condition Closes: https://bugs.gentoo.org/770070 Signed-off-by: Sam James gentoo.org> app-doc/doxygen/doxygen-1.9.1.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/app-doc/doxygen/doxygen-1.9.1.ebuild b/app-doc/doxygen/doxygen-1.9.1.ebuild index 98132f67743..2b2dd947144 100644 --- a/app-doc/doxygen/doxygen-1.9.1.ebuild +++ b/app-doc/doxygen/doxygen-1.9.1.ebuild @@ -117,6 +117,8 @@ src_configure() { } src_compile() { + cmake_src_compile + if use doc; then export VARTEXFONTS="${T}/fonts" # bug #564944 @@ -126,10 +128,9 @@ src_compile() { || die "disabling dot failed" fi - cmake_src_compile docs + # -j1 for bug #770070 + cmake_src_compile docs -j1 fi - - cmake_src_compile } src_install() {