diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-07-14 07:40:09 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-07-14 07:40:09 +0000 |
commit | 48f644cc86a0af65d0096691256525fe8766c588 (patch) | |
tree | 827285f68bdd671ec2cbb57e4c7c44590a7b14e3 /net-ftp | |
parent | Use subslots with readline/mpfr. (diff) | |
download | gentoo-2-48f644cc86a0af65d0096691256525fe8766c588.tar.gz gentoo-2-48f644cc86a0af65d0096691256525fe8766c588.tar.bz2 gentoo-2-48f644cc86a0af65d0096691256525fe8766c588.zip |
Fix echo -n handling to be portable.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
Diffstat (limited to 'net-ftp')
-rw-r--r-- | net-ftp/ftp/ChangeLog | 5 | ||||
-rw-r--r-- | net-ftp/ftp/ftp-0.17.23.0.2.1.ebuild | 8 |
2 files changed, 10 insertions, 3 deletions
diff --git a/net-ftp/ftp/ChangeLog b/net-ftp/ftp/ChangeLog index 2ddc02cdc087..c5c51e317b8d 100644 --- a/net-ftp/ftp/ChangeLog +++ b/net-ftp/ftp/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-ftp/ftp # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/ftp/ChangeLog,v 1.39 2015/07/14 07:29:39 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/ftp/ChangeLog,v 1.40 2015/07/14 07:40:09 vapier Exp $ + + 14 Jul 2015; Mike Frysinger <vapier@gentoo.org> ftp-0.17.23.0.2.1.ebuild: + Fix echo -n handling to be portable. 14 Jul 2015; Mike Frysinger <vapier@gentoo.org> ftp-0.17.23.0.2.1.ebuild: Update to EAPI=5 and use subslots on readline/openssl/ncurses. diff --git a/net-ftp/ftp/ftp-0.17.23.0.2.1.ebuild b/net-ftp/ftp/ftp-0.17.23.0.2.1.ebuild index d38fedf3b8ba..c01b99af9b60 100644 --- a/net-ftp/ftp/ftp-0.17.23.0.2.1.ebuild +++ b/net-ftp/ftp/ftp-0.17.23.0.2.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/ftp/ftp-0.17.23.0.2.1.ebuild,v 1.3 2015/07/14 07:29:39 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/ftp/ftp-0.17.23.0.2.1.ebuild,v 1.4 2015/07/14 07:40:09 vapier Exp $ EAPI="5" @@ -33,6 +33,9 @@ S=${WORKDIR}/${MY_P} src_prepare() { EPATCH_FORCE="yes" EPATCH_SUFFIX="diff" epatch "${WORKDIR}"/debian/patches EPATCH_SUFFIX="patch" epatch "${WORKDIR}"/patch + sed -i \ + -e 's:echo -n:printf %s :' \ + configure || die } src_configure() { @@ -43,7 +46,8 @@ src_configure() { --prefix=/usr \ $(use_enable ipv6) \ $(use_enable readline) \ - $(use_enable ssl) + $(use_enable ssl) \ + || die } src_install() { |