diff options
author | Fabian Groffen <grobian@gentoo.org> | 2013-10-13 08:51:41 +0000 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2013-10-13 08:51:41 +0000 |
commit | 2a60e25f78ac44025d0ab6bc6a0f9ce2f12882ba (patch) | |
tree | 8a92a767976d968f61c3d30394c210cc2d4a1df7 /net-ftp | |
parent | Also compatible with python3_3 (diff) | |
download | gentoo-2-2a60e25f78ac44025d0ab6bc6a0f9ce2f12882ba.tar.gz gentoo-2-2a60e25f78ac44025d0ab6bc6a0f9ce2f12882ba.tar.bz2 gentoo-2-2a60e25f78ac44025d0ab6bc6a0f9ce2f12882ba.zip |
Fix for Prefix by yegle in bug #487720
(Portage version: 2.2.7-prefix/cvs/SunOS i386, signed Manifest commit with key 0x5F75F607C5C74E89)
Diffstat (limited to 'net-ftp')
-rw-r--r-- | net-ftp/lftp/ChangeLog | 5 | ||||
-rw-r--r-- | net-ftp/lftp/lftp-4.4.10.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/net-ftp/lftp/ChangeLog b/net-ftp/lftp/ChangeLog index 2bf59c8cc51e..d39d7053c129 100644 --- a/net-ftp/lftp/ChangeLog +++ b/net-ftp/lftp/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-ftp/lftp # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.433 2013/10/11 13:13:47 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.434 2013/10/13 08:51:41 grobian Exp $ + + 13 Oct 2013; Fabian Groffen <grobian@gentoo.org> lftp-4.4.10.ebuild: + Fix for Prefix by yegle in bug #487720 *lftp-4.4.10 (11 Oct 2013) diff --git a/net-ftp/lftp/lftp-4.4.10.ebuild b/net-ftp/lftp/lftp-4.4.10.ebuild index cb3bceb68f1d..694898c7c97f 100644 --- a/net-ftp/lftp/lftp-4.4.10.ebuild +++ b/net-ftp/lftp/lftp-4.4.10.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/net-ftp/lftp/lftp-4.4.10.ebuild,v 1.1 2013/10/11 13:13:47 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-4.4.10.ebuild,v 1.2 2013/10/13 08:51:41 grobian Exp $ EAPI=5 inherit autotools eutils libtool @@ -80,6 +80,6 @@ src_install() { default local script for script in {convert-mozilla-cookies,verify-file}; do - use ${script} || { rm "${D}"/usr/share/${PN}/${script} || die ;} + use ${script} || { rm "${ED}"/usr/share/${PN}/${script} || die ;} done } |