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 081AF1382C5 for ; Tue, 30 Mar 2021 14:21:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5B9EDE0A9B; Tue, 30 Mar 2021 14:21:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 4336EE0A9B for ; Tue, 30 Mar 2021 14:21:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 56DB7335CC1 for ; Tue, 30 Mar 2021 14:21:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CFAE25B8 for ; Tue, 30 Mar 2021 14:21:39 +0000 (UTC) From: "Ben Kohler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ben Kohler" Message-ID: <1617114081.393319f500525878b9df89ea9795605f5fe3f8ec.bkohler@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/blackbox/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-wm/blackbox/blackbox-0.76-r1.ebuild X-VCS-Directories: x11-wm/blackbox/ X-VCS-Committer: bkohler X-VCS-Committer-Name: Ben Kohler X-VCS-Revision: 393319f500525878b9df89ea9795605f5fe3f8ec X-VCS-Branch: master Date: Tue, 30 Mar 2021 14:21:39 +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: 2916436c-ecc4-4c8b-93dd-45902503b7fd X-Archives-Hash: 1da840cc29621da83d941653c0106a8e commit: 393319f500525878b9df89ea9795605f5fe3f8ec Author: Ben Kohler gentoo org> AuthorDate: Tue Mar 30 14:21:21 2021 +0000 Commit: Ben Kohler gentoo org> CommitDate: Tue Mar 30 14:21:21 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=393319f5 x11-wm/blackbox: fix sandbox violation This fix should have already been queued up for last commit but it got lost somehow. Closes: https://bugs.gentoo.org/779379 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Ben Kohler gentoo.org> x11-wm/blackbox/blackbox-0.76-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x11-wm/blackbox/blackbox-0.76-r1.ebuild b/x11-wm/blackbox/blackbox-0.76-r1.ebuild index 50375072373..f758db45f9e 100644 --- a/x11-wm/blackbox/blackbox-0.76-r1.ebuild +++ b/x11-wm/blackbox/blackbox-0.76-r1.ebuild @@ -51,5 +51,5 @@ src_install() { dodoc AUTHORS ChangeLog* COMPLIANCE README* TODO find "${D}" -name '*.la' -delete || die - use static-libs || rm /usr/$(get_libdir)/libbt.a || die + use static-libs || rm "${D}"/usr/$(get_libdir)/libbt.a || die }