summaryrefslogtreecommitdiff
path: root/eclass
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
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')
-rw-r--r--eclass/ChangeLog6
-rw-r--r--eclass/ruby-ng.eclass6
2 files changed, 8 insertions, 4 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog
index ebb0697a4e8b..9ea832cf366b 100644
--- a/eclass/ChangeLog
+++ b/eclass/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for eclass directory
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1115 2014/01/15 12:12:41 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1116 2014/01/16 07:57:40 graaff Exp $
+
+ 16 Jan 2014; Hans de Graaff <graaff@gentoo.org> ruby-ng.eclass:
+ Explicitly cp symlinks as-is. The default for this changed in coreutils 8.22.
+ Fixes bug 472710.
15 Jan 2014; Michał Górny <mgorny@gentoo.org> autotools-multilib.eclass:
Actually enable in-source build support.
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"
}