diff options
author | Hasan Khalil <gongloo@gentoo.org> | 2005-07-08 00:56:06 +0000 |
---|---|---|
committer | Hasan Khalil <gongloo@gentoo.org> | 2005-07-08 00:56:06 +0000 |
commit | 88cecc425e7bc4f07bcc23fb0d7198440044cf40 (patch) | |
tree | 9b8a0059c2b2fa6746c3633f0fe01fb3e0c9a84a /eclass/ruby.eclass | |
parent | Mark stable on x86. (diff) | |
download | gentoo-2-88cecc425e7bc4f07bcc23fb0d7198440044cf40.tar.gz gentoo-2-88cecc425e7bc4f07bcc23fb0d7198440044cf40.tar.bz2 gentoo-2-88cecc425e7bc4f07bcc23fb0d7198440044cf40.zip |
Updated for non-GNU cp, closes bug 96862.
Diffstat (limited to 'eclass/ruby.eclass')
-rw-r--r-- | eclass/ruby.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/ruby.eclass b/eclass/ruby.eclass index d3ccba5b441c..97b3eb8f90e3 100644 --- a/eclass/ruby.eclass +++ b/eclass/ruby.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ruby.eclass,v 1.46 2005/07/06 20:23:20 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ruby.eclass,v 1.47 2005/07/08 00:56:06 gongloo Exp $ # # Author: Mamoru KOMACHI <usata@gentoo.org> # @@ -151,7 +151,7 @@ erubydoc() { for dir in sample example examples; do if [ -d ${dir} ] ; then dodir /usr/share/doc/${PF} - cp -a ${dir} ${D}/usr/share/doc/${PF} || die "cp failed" + cp -pPR ${dir} ${D}/usr/share/doc/${PF} || die "cp failed" fi done for i in ChangeLog* [A-Z][A-Z]* ; do |