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 5CCE71382C5 for ; Mon, 19 Mar 2018 18:01:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 52D5DE08FA; Mon, 19 Mar 2018 18:01:42 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 19D2AE08FA for ; Mon, 19 Mar 2018 18:01:41 +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 76A4E335C80 for ; Mon, 19 Mar 2018 18:01:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A6509260 for ; Mon, 19 Mar 2018 18:01:38 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1521482468.18a132dcc5b65cd6e03aae29370d00cb303576ee.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/emacs-vcs/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/emacs-vcs/emacs-vcs-26.0.90.ebuild app-editors/emacs-vcs/emacs-vcs-26.0.91.ebuild app-editors/emacs-vcs/emacs-vcs-26.0.9999-r1.ebuild app-editors/emacs-vcs/emacs-vcs-27.0.9999.ebuild X-VCS-Directories: app-editors/emacs-vcs/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 18a132dcc5b65cd6e03aae29370d00cb303576ee X-VCS-Branch: master Date: Mon, 19 Mar 2018 18:01:38 +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: 15c43612-65a1-4984-b52c-a56981909641 X-Archives-Hash: 2db72d960c1a9efd1738c0dc9e68fcea commit: 18a132dcc5b65cd6e03aae29370d00cb303576ee Author: Ulrich Müller gentoo org> AuthorDate: Mon Mar 19 17:52:34 2018 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Mon Mar 19 18:01:08 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18a132dc app-editors/emacs-vcs: Fix temacs wrapper. Disable the sandbox already when "env" is executed, so that the execvp executing temacs will be the regular one from libc. Package-Manager: Portage-2.3.24, Repoman-2.3.6 app-editors/emacs-vcs/emacs-vcs-26.0.90.ebuild | 2 +- app-editors/emacs-vcs/emacs-vcs-26.0.91.ebuild | 2 +- app-editors/emacs-vcs/emacs-vcs-26.0.9999-r1.ebuild | 2 +- app-editors/emacs-vcs/emacs-vcs-27.0.9999.ebuild | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app-editors/emacs-vcs/emacs-vcs-26.0.90.ebuild b/app-editors/emacs-vcs/emacs-vcs-26.0.90.ebuild index 94fd9a28c83..54cf4579f32 100644 --- a/app-editors/emacs-vcs/emacs-vcs-26.0.90.ebuild +++ b/app-editors/emacs-vcs/emacs-vcs-26.0.90.ebuild @@ -272,7 +272,7 @@ src_configure() { src_compile() { # Disable sandbox when dumping. For the unbelievers, see bug #131505 - emake RUN_TEMACS="env SANDBOX_ON=0 LD_PRELOAD= ./temacs" + emake RUN_TEMACS="SANDBOX_ON=0 LD_PRELOAD= env ./temacs" } src_install () { diff --git a/app-editors/emacs-vcs/emacs-vcs-26.0.91.ebuild b/app-editors/emacs-vcs/emacs-vcs-26.0.91.ebuild index 94fd9a28c83..54cf4579f32 100644 --- a/app-editors/emacs-vcs/emacs-vcs-26.0.91.ebuild +++ b/app-editors/emacs-vcs/emacs-vcs-26.0.91.ebuild @@ -272,7 +272,7 @@ src_configure() { src_compile() { # Disable sandbox when dumping. For the unbelievers, see bug #131505 - emake RUN_TEMACS="env SANDBOX_ON=0 LD_PRELOAD= ./temacs" + emake RUN_TEMACS="SANDBOX_ON=0 LD_PRELOAD= env ./temacs" } src_install () { diff --git a/app-editors/emacs-vcs/emacs-vcs-26.0.9999-r1.ebuild b/app-editors/emacs-vcs/emacs-vcs-26.0.9999-r1.ebuild index 94fd9a28c83..54cf4579f32 100644 --- a/app-editors/emacs-vcs/emacs-vcs-26.0.9999-r1.ebuild +++ b/app-editors/emacs-vcs/emacs-vcs-26.0.9999-r1.ebuild @@ -272,7 +272,7 @@ src_configure() { src_compile() { # Disable sandbox when dumping. For the unbelievers, see bug #131505 - emake RUN_TEMACS="env SANDBOX_ON=0 LD_PRELOAD= ./temacs" + emake RUN_TEMACS="SANDBOX_ON=0 LD_PRELOAD= env ./temacs" } src_install () { diff --git a/app-editors/emacs-vcs/emacs-vcs-27.0.9999.ebuild b/app-editors/emacs-vcs/emacs-vcs-27.0.9999.ebuild index 30c00f9c66d..9ad77b5ed1f 100644 --- a/app-editors/emacs-vcs/emacs-vcs-27.0.9999.ebuild +++ b/app-editors/emacs-vcs/emacs-vcs-27.0.9999.ebuild @@ -272,7 +272,7 @@ src_configure() { src_compile() { # Disable sandbox when dumping. For the unbelievers, see bug #131505 - emake RUN_TEMACS="env SANDBOX_ON=0 LD_PRELOAD= ./temacs" + emake RUN_TEMACS="SANDBOX_ON=0 LD_PRELOAD= env ./temacs" } src_install () {