diff options
author | Aaron W. Swenson <titanofold@gentoo.org> | 2013-03-09 18:46:37 +0000 |
---|---|---|
committer | Aaron W. Swenson <titanofold@gentoo.org> | 2013-03-09 18:46:37 +0000 |
commit | b62fce5d6ab73e04228a197873b602b11689325c (patch) | |
tree | 676da5f4385f3ef11803fb0efc776d5f5550da31 /net-misc/s3cmd | |
parent | Stabilise on amd64 x86 and ppc, as this version really builds on ppc. Remove ... (diff) | |
download | gentoo-2-b62fce5d6ab73e04228a197873b602b11689325c.tar.gz gentoo-2-b62fce5d6ab73e04228a197873b602b11689325c.tar.bz2 gentoo-2-b62fce5d6ab73e04228a197873b602b11689325c.zip |
Added or die as reported by Chema Alonso in bug 460766.
(Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key D1BBFDA0)
Diffstat (limited to 'net-misc/s3cmd')
-rw-r--r-- | net-misc/s3cmd/ChangeLog | 5 | ||||
-rw-r--r-- | net-misc/s3cmd/s3cmd-1.0.1.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/net-misc/s3cmd/ChangeLog b/net-misc/s3cmd/ChangeLog index 9996064b3f08..abe361e485cf 100644 --- a/net-misc/s3cmd/ChangeLog +++ b/net-misc/s3cmd/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-misc/s3cmd # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/s3cmd/ChangeLog,v 1.18 2013/03/08 16:23:21 nimiux Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/s3cmd/ChangeLog,v 1.19 2013/03/09 18:46:37 titanofold Exp $ + + 09 Mar 2013; Aaron W. Swenson <titanofold@gentoo.org> s3cmd-1.0.1.ebuild: + Added or die as reported by Chema Alonso in bug 460766. 08 Mar 2013; Chema Alonso <nimiux@gentoo.org> s3cmd-1.0.1.ebuild: Stable for amd64 wrt bug #460766 diff --git a/net-misc/s3cmd/s3cmd-1.0.1.ebuild b/net-misc/s3cmd/s3cmd-1.0.1.ebuild index 8404c78842fe..42cce4eb7b15 100644 --- a/net-misc/s3cmd/s3cmd-1.0.1.ebuild +++ b/net-misc/s3cmd/s3cmd-1.0.1.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-misc/s3cmd/s3cmd-1.0.1.ebuild,v 1.2 2013/03/08 16:23:21 nimiux Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/s3cmd/s3cmd-1.0.1.ebuild,v 1.3 2013/03/09 18:46:37 titanofold Exp $ EAPI="3" PYTHON_DEPEND="2" @@ -29,5 +29,5 @@ pkg_setup() { src_install() { S3CMD_INSTPATH_DOC=/usr/share/doc/${PF} distutils_src_install - rm -rf "${D}"/usr/share/doc/${PF}/${PN} + rm -rf "${D}"/usr/share/doc/${PF}/${PN} || die 'rm failed' } |