diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2013-03-06 17:46:59 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2013-03-06 17:46:59 +0000 |
commit | 5ad233b658e1aeaddc4106c7c116b5acfb21abaa (patch) | |
tree | 2dc5bf5258f725df69407d4f2884631d5cbdd222 /sys-fs | |
parent | Fix openh323 makefile patching, drop hppa keyword due to ptlib. (diff) | |
download | gentoo-2-5ad233b658e1aeaddc4106c7c116b5acfb21abaa.tar.gz gentoo-2-5ad233b658e1aeaddc4106c7c116b5acfb21abaa.tar.bz2 gentoo-2-5ad233b658e1aeaddc4106c7c116b5acfb21abaa.zip |
Since oldest util-linux in tree is 2.19.1 and --fake --no-canonicalize for mount and umount has worked since 2.18 assume it's present to avoid sandbox violation with mtab writability wrt #438250 by Attila Tóth and Canek Peláez Valdés
(Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
Diffstat (limited to 'sys-fs')
-rw-r--r-- | sys-fs/fuse/ChangeLog | 8 | ||||
-rw-r--r-- | sys-fs/fuse/fuse-2.9.2.ebuild | 5 |
2 files changed, 11 insertions, 2 deletions
diff --git a/sys-fs/fuse/ChangeLog b/sys-fs/fuse/ChangeLog index 341fdf2f4ec9..4c71c3327653 100644 --- a/sys-fs/fuse/ChangeLog +++ b/sys-fs/fuse/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sys-fs/fuse # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v 1.174 2013/02/17 20:27:32 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/ChangeLog,v 1.175 2013/03/06 17:46:59 ssuominen Exp $ + + 06 Mar 2013; Samuli Suominen <ssuominen@gentoo.org> fuse-2.9.2.ebuild: + Since oldest util-linux in tree is 2.19.1 and --fake --no-canonicalize for + mount and umount has worked since 2.18 assume it's present to avoid sandbox + violation with mtab writability wrt #438250 by Attila Tóth and Canek Peláez + Valdés 17 Feb 2013; Zac Medico <zmedico@gentoo.org> fuse-2.8.6.ebuild, fuse-2.8.7.ebuild, fuse-2.9.0.ebuild, fuse-2.9.1-r1.ebuild, fuse-2.9.1.ebuild, diff --git a/sys-fs/fuse/fuse-2.9.2.ebuild b/sys-fs/fuse/fuse-2.9.2.ebuild index f3a429699dfb..8441f004c26b 100644 --- a/sys-fs/fuse/fuse-2.9.2.ebuild +++ b/sys-fs/fuse/fuse-2.9.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/fuse-2.9.2.ebuild,v 1.3 2013/02/17 20:27:32 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse/fuse-2.9.2.ebuild,v 1.4 2013/03/06 17:46:59 ssuominen Exp $ EAPI=5 inherit eutils libtool linux-info udev toolchain-funcs @@ -32,6 +32,9 @@ pkg_setup() { } src_prepare() { + # sandbox violation with mtab writability wrt #438250 + # don't sed configure.in without eautoreconf because of maintainer mode + sed -i -e 's:umount --fake:true --fake:' configure || die elibtoolize } |