From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1002825-garchives=archives.gentoo.org@lists.gentoo.org> 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 5BFE81382C5 for <garchives@archives.gentoo.org>; Sun, 11 Feb 2018 11:23:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9326EE0CCD; Sun, 11 Feb 2018 11:23:41 +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 61F1EE0CCD for <gentoo-commits@lists.gentoo.org>; Sun, 11 Feb 2018 11:23: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 998B6335C2E for <gentoo-commits@lists.gentoo.org>; Sun, 11 Feb 2018 11:23:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 26FD41C9 for <gentoo-commits@lists.gentoo.org>; Sun, 11 Feb 2018 11:23:38 +0000 (UTC) From: "Ulrich Müller" <ulm@gentoo.org> 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" <ulm@gentoo.org> Message-ID: <1518348169.0b0800435bbc35d2a175fff316535bf3225379f6.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/emacs/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/emacs/emacs-18.59-r11.ebuild app-editors/emacs/emacs-23.4-r16.ebuild app-editors/emacs/emacs-24.5-r4.ebuild app-editors/emacs/emacs-25.3.ebuild X-VCS-Directories: app-editors/emacs/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 0b0800435bbc35d2a175fff316535bf3225379f6 X-VCS-Branch: master Date: Sun, 11 Feb 2018 11:23:38 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 9b5438b2-2310-45d3-b982-5e7a707af4dc X-Archives-Hash: 081233738ed0044a16e56ddef0f94d40 commit: 0b0800435bbc35d2a175fff316535bf3225379f6 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Sun Feb 11 11:20:27 2018 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Sun Feb 11 11:22:49 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b080043 app-editors/emacs: Disable the sandbox entirely. In addition to SANDBOX_ON=0, unset LD_PRELOAD. Fixes a build error on sparc. Closes: https://bugs.gentoo.org/647238 Package-Manager: Portage-2.3.24, Repoman-2.3.6 app-editors/emacs/emacs-18.59-r11.ebuild | 5 ++--- app-editors/emacs/emacs-23.4-r16.ebuild | 5 +++-- app-editors/emacs/emacs-24.5-r4.ebuild | 4 ++-- app-editors/emacs/emacs-25.3.ebuild | 4 ++-- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/app-editors/emacs/emacs-18.59-r11.ebuild b/app-editors/emacs/emacs-18.59-r11.ebuild index 8b9d3d2c04e..19abd28b5a2 100644 --- a/app-editors/emacs/emacs-18.59-r11.ebuild +++ b/app-editors/emacs/emacs-18.59-r11.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -71,8 +71,7 @@ src_configure() { src_compile() { # Do not use the sandbox, or the dumped Emacs will be twice as large - export SANDBOX_ON=0 - emake --jobs=1 \ + SANDBOX_ON=0 LD_PRELOAD="" emake --jobs=1 \ CC="$(tc-getCC)" CFLAGS="${CFLAGS} -Demacs" \ LD="$(tc-getCC) -nostdlib" LDFLAGS="${LDFLAGS}" } diff --git a/app-editors/emacs/emacs-23.4-r16.ebuild b/app-editors/emacs/emacs-23.4-r16.ebuild index eb7cceabd89..00d4f14a53a 100644 --- a/app-editors/emacs/emacs-23.4-r16.ebuild +++ b/app-editors/emacs/emacs-23.4-r16.ebuild @@ -209,8 +209,9 @@ src_configure() { } src_compile() { - export SANDBOX_ON=0 # for the unbelievers, see Bug #131505 - emake CC="$(tc-getCC)" \ + # Disable the sandbox. For the unbelievers, see bug #131505 + SANDBOX_ON=0 LD_PRELOAD="" emake \ + CC="$(tc-getCC)" \ AR="$(tc-getAR) cq" \ RANLIB="$(tc-getRANLIB)" } diff --git a/app-editors/emacs/emacs-24.5-r4.ebuild b/app-editors/emacs/emacs-24.5-r4.ebuild index c86549765c9..8360af8c48d 100644 --- a/app-editors/emacs/emacs-24.5-r4.ebuild +++ b/app-editors/emacs/emacs-24.5-r4.ebuild @@ -210,8 +210,8 @@ src_configure() { } src_compile() { - export SANDBOX_ON=0 # for the unbelievers, see Bug #131505 - emake + # Disable the sandbox. For the unbelievers, see bug #131505 + SANDBOX_ON=0 LD_PRELOAD="" emake } src_install () { diff --git a/app-editors/emacs/emacs-25.3.ebuild b/app-editors/emacs/emacs-25.3.ebuild index 35c1cc20476..286763c2e23 100644 --- a/app-editors/emacs/emacs-25.3.ebuild +++ b/app-editors/emacs/emacs-25.3.ebuild @@ -220,8 +220,8 @@ src_configure() { } src_compile() { - export SANDBOX_ON=0 # for the unbelievers, see Bug #131505 - emake + # Disable the sandbox. For the unbelievers, see bug #131505 + SANDBOX_ON=0 LD_PRELOAD="" emake } src_install () {