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 8DA53158086 for ; Fri, 24 Dec 2021 04:45:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 57DF52BC01C; Fri, 24 Dec 2021 04:45:31 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 76F4C2BC008 for ; Fri, 24 Dec 2021 04:45:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 8ABF3342C71 for ; Fri, 24 Dec 2021 04:45:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E09451BF for ; Fri, 24 Dec 2021 04:45:25 +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: <1640321106.5cb9da24306c5cff0bf288e0dbb3b62d09764060.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/curaengine/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/curaengine/curaengine-4.9.1.ebuild X-VCS-Directories: media-gfx/curaengine/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 5cb9da24306c5cff0bf288e0dbb3b62d09764060 X-VCS-Branch: master Date: Fri, 24 Dec 2021 04:45:25 +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: 6a3ccbbb-0684-4473-b7db-5603c92ad1b2 X-Archives-Hash: e8db261534a3e6dbab1dafd19636a653 commit: 5cb9da24306c5cff0bf288e0dbb3b62d09764060 Author: Dennis Eisele dennis-eisele de> AuthorDate: Fri Dec 24 00:14:25 2021 +0000 Commit: Sam James gentoo org> CommitDate: Fri Dec 24 04:45:06 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cb9da24 media-gfx/curaengine: fix find command usage in compile phase Closes: https://bugs.gentoo.org/820701 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Dennis Eisele dennis-eisele.de> Closes: https://github.com/gentoo/gentoo/pull/23491 Signed-off-by: Sam James gentoo.org> media-gfx/curaengine/curaengine-4.9.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-gfx/curaengine/curaengine-4.9.1.ebuild b/media-gfx/curaengine/curaengine-4.9.1.ebuild index ec7a2e757c60..16c9ac1b8576 100644 --- a/media-gfx/curaengine/curaengine-4.9.1.ebuild +++ b/media-gfx/curaengine/curaengine-4.9.1.ebuild @@ -79,7 +79,7 @@ src_compile() { if use doc; then doxygen || die "generating docs failed" mv docs/html . || die - find html -type f \(-name '*.md5' -o -name '*.map'\) -delete || die + find html -type f '(' -name '*.md5' -o -name '*.map' ')' -delete || die HTML_DOCS=( html/. ) fi }