summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans de Graaff <graaff@gentoo.org>2014-01-16 07:57:40 +0000
committerHans de Graaff <graaff@gentoo.org>2014-01-16 07:57:40 +0000
commit5301e0fa5e270685c027bab0d7854bc53a94dce2 (patch)
tree9dfdb2f8496fe224d6d8735a46680da02b6ebef2 /eclass/ruby-ng.eclass
parentversion bump (diff)
downloadgentoo-2-5301e0fa5e270685c027bab0d7854bc53a94dce2.tar.gz
gentoo-2-5301e0fa5e270685c027bab0d7854bc53a94dce2.tar.bz2
gentoo-2-5301e0fa5e270685c027bab0d7854bc53a94dce2.zip
Explicitly cp symlinks as-is. The default for this changed in coreutils 8.22. Fixes bug 472710.
Diffstat (limited to 'eclass/ruby-ng.eclass')
-rw-r--r--eclass/ruby-ng.eclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/ruby-ng.eclass b/eclass/ruby-ng.eclass
index 203efe13e2f4..b870c0698bc8 100644
--- a/eclass/ruby-ng.eclass
+++ b/eclass/ruby-ng.eclass
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ruby-ng.eclass,v 1.53 2013/12/26 07:11:48 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ruby-ng.eclass,v 1.54 2014/01/16 07:57:40 graaff Exp $
# @ECLASS: ruby-ng.eclass
# @MAINTAINER:
@@ -457,7 +457,7 @@ _ruby_apply_patches() {
_ruby_source_copy() {
# Until we actually find a reason not to, we use hardlinks, this
# should reduce the amount of disk space that is wasted by this.
- cp -prl all ${_ruby_implementation} \
+ cp -prlP all ${_ruby_implementation} \
|| die "Unable to copy ${_ruby_implementation} environment"
}