diff options
author | Harald van Dijk <truedfx@gentoo.org> | 2008-11-09 07:26:17 +0000 |
---|---|---|
committer | Harald van Dijk <truedfx@gentoo.org> | 2008-11-09 07:26:17 +0000 |
commit | 819a434f9b05a15165c432d68370649f48588586 (patch) | |
tree | ecad00d1461d1212525338f8a73b2032e7d93c2b /sys-apps/sandbox/sandbox-1.2.20_alpha2-r1.ebuild | |
parent | Always own /etc/exports from now on #246021 by Ian Kelling. (diff) | |
download | historical-819a434f9b05a15165c432d68370649f48588586.tar.gz historical-819a434f9b05a15165c432d68370649f48588586.tar.bz2 historical-819a434f9b05a15165c432d68370649f48588586.zip |
Avoid bashism in configure script (#236868)
Package-Manager: portage-2.2_rc13/cvs/Linux 2.6.27-gentoo-r2 x86_64
Diffstat (limited to 'sys-apps/sandbox/sandbox-1.2.20_alpha2-r1.ebuild')
-rw-r--r-- | sys-apps/sandbox/sandbox-1.2.20_alpha2-r1.ebuild | 9 |
1 files changed, 6 insertions, 3 deletions
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" } |