From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 8137B13877A for ; Tue, 17 Jun 2014 15:46:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DF456E0B6D; Tue, 17 Jun 2014 15:46:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 76CA9E0B6D for ; Tue, 17 Jun 2014 15:46:10 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8120B33FFDC for ; Tue, 17 Jun 2014 15:46:09 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 52BAF187DE for ; Tue, 17 Jun 2014 15:46:07 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1403019980.7be6b6612d9a2548541d11485be88ac22a211354.blueness@gentoo> Subject: [gentoo-commits] proj/hardened-dev:musl commit in: sys-apps/sandbox/ X-VCS-Repository: proj/hardened-dev X-VCS-Files: sys-apps/sandbox/sandbox-2.6-r999.ebuild X-VCS-Directories: sys-apps/sandbox/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 7be6b6612d9a2548541d11485be88ac22a211354 X-VCS-Branch: musl Date: Tue, 17 Jun 2014 15:46:07 +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-Archives-Salt: f9edef2b-e9a9-43de-b38a-619a8e27c8cd X-Archives-Hash: 3beb12e2a7c70cf46a524de449b60efd commit: 7be6b6612d9a2548541d11485be88ac22a211354 Author: Anthony G. Basile gentoo org> AuthorDate: Tue Jun 17 15:46:20 2014 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Tue Jun 17 15:46:20 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/hardened-dev.git;a=commit;h=7be6b661 sys-apps/sandbox: make sandbox non-executable on mips where its broken Package-Manager: portage-2.2.8-r1 Manifest-Sign-Key: 0xF52D4BBA --- sys-apps/sandbox/sandbox-2.6-r999.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sys-apps/sandbox/sandbox-2.6-r999.ebuild b/sys-apps/sandbox/sandbox-2.6-r999.ebuild index e757d5c..20d7b7b 100644 --- a/sys-apps/sandbox/sandbox-2.6-r999.ebuild +++ b/sys-apps/sandbox/sandbox-2.6-r999.ebuild @@ -128,4 +128,7 @@ pkg_preinst() { pkg_postinst() { chmod 0755 "${ROOT}"/etc/sandbox.d #265376 + + # Sandbox builds on mips-musl but fails to run + use mips && chmod -x "${ROOT}"/usr/bin/sandbox }