diff options
author | Patrick Kursawe <phosphan@gentoo.org> | 2005-08-24 16:30:29 +0000 |
---|---|---|
committer | Patrick Kursawe <phosphan@gentoo.org> | 2005-08-24 16:30:29 +0000 |
commit | 670d13712832a0e4bfdcfd9f16f756ff2d456657 (patch) | |
tree | 88153aebd4657781defadc35d274a2039a999c0a /sci-libs/torch | |
parent | epatch does not need die. (diff) | |
download | gentoo-2-670d13712832a0e4bfdcfd9f16f756ff2d456657.tar.gz gentoo-2-670d13712832a0e4bfdcfd9f16f756ff2d456657.tar.bz2 gentoo-2-670d13712832a0e4bfdcfd9f16f756ff2d456657.zip |
No longer using cp -a (bug #103487)
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'sci-libs/torch')
-rw-r--r-- | sci-libs/torch/ChangeLog | 5 | ||||
-rw-r--r-- | sci-libs/torch/torch-3.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/sci-libs/torch/ChangeLog b/sci-libs/torch/ChangeLog index ec37bd671686..0a203d58065a 100644 --- a/sci-libs/torch/ChangeLog +++ b/sci-libs/torch/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-libs/torch # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/torch/ChangeLog,v 1.3 2005/05/09 11:21:27 herbs Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/torch/ChangeLog,v 1.4 2005/08/24 16:28:34 phosphan Exp $ + + 24 Aug 2005; Patrick Kursawe <phosphan@gentoo.org> torch-3.ebuild: + No longer using cp -a (bug #103487) 09 May 2005; Herbie Hopkins <herbs@gentoo.org> torch-3.ebuild: Don't add -malign-double on amd64, keyworded ~amd64. diff --git a/sci-libs/torch/torch-3.ebuild b/sci-libs/torch/torch-3.ebuild index 582425824a99..198c2c7e62be 100644 --- a/sci-libs/torch/torch-3.ebuild +++ b/sci-libs/torch/torch-3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/torch/torch-3.ebuild,v 1.2 2005/05/09 11:21:27 herbs Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/torch/torch-3.ebuild,v 1.3 2005/08/24 16:28:34 phosphan Exp $ inherit toolchain-funcs multilib @@ -55,7 +55,7 @@ src_install() { dodoc LICENSE dodir /usr/share/doc/${PF} insinto /usr/share/doc/${PF} - cp -a examples ${D}/usr/share/doc/${PF} + cp -pPR examples ${D}/usr/share/doc/${PF} cd ${D}/usr/share/doc/${PF} sed -i \ -e 's|^TORCHDIR.*|TORCHDIR := /usr/share/torch|' \ |