diff options
author | Fabian Groffen <grobian@gentoo.org> | 2013-02-26 21:28:40 +0000 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2013-02-26 21:28:40 +0000 |
commit | 9b88f3fa4e14672f1c319f127ec3b9c8cc615bfd (patch) | |
tree | cadf71adb703711d7e799f691fbbf339e4559ef5 /sys-fs/mtools | |
parent | Update the google-chrome mask. (diff) | |
download | gentoo-2-9b88f3fa4e14672f1c319f127ec3b9c8cc615bfd.tar.gz gentoo-2-9b88f3fa4e14672f1c319f127ec3b9c8cc615bfd.tar.bz2 gentoo-2-9b88f3fa4e14672f1c319f127ec3b9c8cc615bfd.zip |
Fix for Prefix, by Yuriy Taraday, bug #447684
(Portage version: 2.2.01.21688-prefix/cvs/Darwin i386, signed Manifest commit with key 0x5F75F607C5C74E89)
Diffstat (limited to 'sys-fs/mtools')
-rw-r--r-- | sys-fs/mtools/ChangeLog | 5 | ||||
-rw-r--r-- | sys-fs/mtools/mtools-4.0.18.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/sys-fs/mtools/ChangeLog b/sys-fs/mtools/ChangeLog index 6809f9f4cc79..35cad15d61fc 100644 --- a/sys-fs/mtools/ChangeLog +++ b/sys-fs/mtools/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-fs/mtools # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtools/ChangeLog,v 1.53 2013/01/17 03:18:54 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtools/ChangeLog,v 1.54 2013/02/26 21:28:40 grobian Exp $ + + 26 Feb 2013; Fabian Groffen <grobian@gentoo.org> mtools-4.0.18.ebuild: + Fix for Prefix, by Yuriy Taraday, bug #447684 *mtools-4.0.18 (17 Jan 2013) diff --git a/sys-fs/mtools/mtools-4.0.18.ebuild b/sys-fs/mtools/mtools-4.0.18.ebuild index 3ad3575300a0..fd5c4e3b5634 100644 --- a/sys-fs/mtools/mtools-4.0.18.ebuild +++ b/sys-fs/mtools/mtools-4.0.18.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/mtools/mtools-4.0.18.ebuild,v 1.1 2013/01/17 03:18:54 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtools/mtools-4.0.18.ebuild,v 1.2 2013/02/26 21:28:40 grobian Exp $ EAPI="4" @@ -30,7 +30,7 @@ src_prepare() { src_configure() { econf \ - --sysconfdir=/etc/mtools \ + --sysconfdir="${EPREFIX}"/etc/mtools \ $(use_with X x) } @@ -41,5 +41,5 @@ src_install() { insinto /etc/mtools doins mtools.conf # default is fine - sed -i -e '/^SAMPLE FILE$/s:^:#:' "${D}"/etc/mtools/mtools.conf || die + sed -i -e '/^SAMPLE FILE$/s:^:#:' "${ED}"/etc/mtools/mtools.conf || die } |