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 74EF4158041 for ; Wed, 13 Mar 2024 14:56:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 871FBE29BA; Wed, 13 Mar 2024 14:56:37 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 72122E29BA for ; Wed, 13 Mar 2024 14:56:37 +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 A972F335DEC for ; Wed, 13 Mar 2024 14:56:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 02D45B29 for ; Wed, 13 Mar 2024 14:56:35 +0000 (UTC) From: "Matthew Smith" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthew Smith" Message-ID: <1710341782.9ee8190572a5b0028722aee64beefe61d8ba4dad.matthew@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-pda/libimobiledevice/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-pda/libimobiledevice/libimobiledevice-1.3.0_p20240201.ebuild X-VCS-Directories: app-pda/libimobiledevice/ X-VCS-Committer: matthew X-VCS-Committer-Name: Matthew Smith X-VCS-Revision: 9ee8190572a5b0028722aee64beefe61d8ba4dad X-VCS-Branch: master Date: Wed, 13 Mar 2024 14:56: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: 256efc0e-614c-4827-b037-76c3047e9bb7 X-Archives-Hash: d01bce9ef217c036f6be415386033507 commit: 9ee8190572a5b0028722aee64beefe61d8ba4dad Author: Matthew Smith gentoo org> AuthorDate: Wed Mar 13 14:56:22 2024 +0000 Commit: Matthew Smith gentoo org> CommitDate: Wed Mar 13 14:56:22 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ee81905 app-pda/libimobiledevice: fix build with USE=doc Closes: https://bugs.gentoo.org/926934 Signed-off-by: Matthew Smith gentoo.org> app-pda/libimobiledevice/libimobiledevice-1.3.0_p20240201.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-pda/libimobiledevice/libimobiledevice-1.3.0_p20240201.ebuild b/app-pda/libimobiledevice/libimobiledevice-1.3.0_p20240201.ebuild index d62ad8f41e79..400cee6bf9ea 100644 --- a/app-pda/libimobiledevice/libimobiledevice-1.3.0_p20240201.ebuild +++ b/app-pda/libimobiledevice/libimobiledevice-1.3.0_p20240201.ebuild @@ -63,7 +63,7 @@ src_compile() { emake if use doc; then - doxygen "${BUILD_DIR}"/doxygen.cfg || die + doxygen doxygen.cfg || die fi }