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 0FEB91382F6 for ; Fri, 8 Jul 2016 11:17:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4B420E0914; Fri, 8 Jul 2016 11:17:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BE5FBE0914 for ; Fri, 8 Jul 2016 11:17:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CACBB340EE6 for ; Fri, 8 Jul 2016 11:17:35 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 166CB2424 for ; Fri, 8 Jul 2016 11:17:33 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1467875375.3bb409b3eba0c8d3c4dfc33e5066a7fb4e24339a.grobian@gentoo> Subject: [gentoo-commits] repo/proj/prefix:master commit in: scripts/ X-VCS-Repository: repo/proj/prefix X-VCS-Files: scripts/bootstrap-prefix.sh X-VCS-Directories: scripts/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 3bb409b3eba0c8d3c4dfc33e5066a7fb4e24339a X-VCS-Branch: master Date: Fri, 8 Jul 2016 11:17:33 +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: 5862284c-db73-4857-9da9-7cba04d825de X-Archives-Hash: 72bc2fef9b18d00b3b38b111aea8ae17 commit: 3bb409b3eba0c8d3c4dfc33e5066a7fb4e24339a Author: Fabian Groffen gentoo org> AuthorDate: Thu Jul 7 07:09:35 2016 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Thu Jul 7 07:09:35 2016 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=3bb409b3 scripts/bootstrap-prefix: only disable sandbox on RAP scripts/bootstrap-prefix.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh index e05c81a..22987e0 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -232,8 +232,10 @@ bootstrap_setup() { echo 'CXXFLAGS="${CFLAGS}"' echo "MAKEOPTS=\"${MAKEOPTS}\"" echo "CONFIG_SHELL=\"${ROOT}/bin/bash\"" - echo "# sandbox does not work well on Prefix, bug 490246" - echo 'FEATURES="-usersandbox -sandbox"' + if is-rap ; then + echo "# sandbox does not work well on Prefix, bug 490246" + echo 'FEATURES="-usersandbox -sandbox"' + fi if [[ !is-rap && -n ${PREFIX_DISABLE_USR_SPLIT} ]] ; then echo echo "# This disables /usr-split, removing this will break"