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 D1E69158094 for ; Fri, 24 Jun 2022 16:10:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 22EC4E0788; Fri, 24 Jun 2022 16:10:11 +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 039EAE0788 for ; Fri, 24 Jun 2022 16:10:11 +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 E3A3A341893 for ; Fri, 24 Jun 2022 16:10:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 17D0D471 for ; Fri, 24 Jun 2022 16:10:08 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1656086994.24640b40b3312ab0edf32c3776900c6fb0476c49.flow@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-lang/opencilk/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-lang/opencilk/opencilk-1.1.ebuild X-VCS-Directories: dev-lang/opencilk/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 24640b40b3312ab0edf32c3776900c6fb0476c49 X-VCS-Branch: master Date: Fri, 24 Jun 2022 16:10:08 +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: d88a4653-c553-4f44-99d6-858fc3a8dfc6 X-Archives-Hash: 6209f8618e33ad60cdbc4b37146a9e83 Message-ID: <20220624161008.CYpWhIGd7S7-VqPvC2Wsgj_IARfJoDx1qYucs0mXtA8@z> commit: 24640b40b3312ab0edf32c3776900c6fb0476c49 Author: Florian Schmaus gentoo org> AuthorDate: Fri Jun 24 16:09:28 2022 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Fri Jun 24 16:09:54 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=24640b40 dev-lang/opencilk: fix installation Closes: https://bugs.gentoo.org/854087 Signed-off-by: Florian Schmaus gentoo.org> dev-lang/opencilk/opencilk-1.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-lang/opencilk/opencilk-1.1.ebuild b/dev-lang/opencilk/opencilk-1.1.ebuild index f79efe420..92c3f32d2 100644 --- a/dev-lang/opencilk/opencilk-1.1.ebuild +++ b/dev-lang/opencilk/opencilk-1.1.ebuild @@ -72,5 +72,5 @@ src_configure() { src_install() { cmake_src_install # Do not install man pages which may conflict with llvm/clang/etc. - rm "${ED}/usr/share/man/man1/scan-build.1.bz2" || die + rm "${ED}/usr/share/man/man1/scan-build.1" || die }