diff options
-rw-r--r-- | sys-apps/sandbox/ChangeLog | 6 | ||||
-rw-r--r-- | sys-apps/sandbox/sandbox-1.2.18.1-r3.ebuild | 3 | ||||
-rw-r--r-- | sys-apps/sandbox/sandbox-1.2.20_alpha2-r1.ebuild | 9 |
3 files changed, 13 insertions, 5 deletions
diff --git a/sys-apps/sandbox/ChangeLog b/sys-apps/sandbox/ChangeLog index f3d7b4f8a649..b0223aa0e567 100644 --- a/sys-apps/sandbox/ChangeLog +++ b/sys-apps/sandbox/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-apps/sandbox # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/sandbox/ChangeLog,v 1.89 2008/06/27 16:44:42 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/sandbox/ChangeLog,v 1.90 2008/11/09 07:26:17 truedfx Exp $ + + 09 Nov 2008; Harald van Dijk <truedfx@gentoo.org> + sandbox-1.2.18.1-r3.ebuild, sandbox-1.2.20_alpha2-r1.ebuild: + Avoid bashism in configure script (#236868) *sandbox-1.2.18.1-r3 (27 Jun 2008) diff --git a/sys-apps/sandbox/sandbox-1.2.18.1-r3.ebuild b/sys-apps/sandbox/sandbox-1.2.18.1-r3.ebuild index 713a56ec0425..b839fcdc33c5 100644 --- a/sys-apps/sandbox/sandbox-1.2.18.1-r3.ebuild +++ b/sys-apps/sandbox/sandbox-1.2.18.1-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/sandbox/sandbox-1.2.18.1-r3.ebuild,v 1.1 2008/06/27 16:44:42 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/sandbox/sandbox-1.2.18.1-r3.ebuild,v 1.2 2008/11/09 07:26:17 truedfx Exp $ # # don't monkey with this ebuild unless contacting portage devs. @@ -42,6 +42,7 @@ src_unpack() { epatch "${FILESDIR}"/${P}-open-normal-fail.patch #135745 epatch "${FILESDIR}"/${P}-open-cloexec.patch #196720 epatch "${FILESDIR}"/${P}-rtld-validation.patch #206678 + sed -i -e 's/&> libctest.log/>libctest.log 2>\&1/g' configure || die "sed failed" #236868 } abi_fail_check() { diff --git a/sys-apps/sandbox/sandbox-1.2.20_alpha2-r1.ebuild b/sys-apps/sandbox/sandbox-1.2.20_alpha2-r1.ebuild index 4070325f9e17..85a82c6ee0bd 100644 --- a/sys-apps/sandbox/sandbox-1.2.20_alpha2-r1.ebuild +++ b/sys-apps/sandbox/sandbox-1.2.20_alpha2-r1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/sandbox/sandbox-1.2.20_alpha2-r1.ebuild,v 1.1 2007/11/04 18:18:49 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/sandbox/sandbox-1.2.20_alpha2-r1.ebuild,v 1.2 2008/11/09 07:26:17 truedfx Exp $ # # don't monkey with this ebuild unless contacting portage devs. @@ -49,10 +49,13 @@ src_unpack() { unpack ${A} if [[ -n ${PVER} ]] ; then - cd ${S} + cd "${S}" epatch "${WORKDIR}/patch" fi + cd "${S}" + sed -i -e 's/&> libctest.log/>libctest.log 2>\&1/g' configure || die "sed failed" #236868 + cd "${S}/libsandbox" epatch "${FILESDIR}/${PN}-1.2.18.1-open-cloexec.patch" } |