diff options
author | 2005-02-19 20:20:00 +0000 | |
---|---|---|
committer | 2005-02-19 20:20:00 +0000 | |
commit | 8f13f955167b6eeda6c5e255f52fcd8cdd132071 (patch) | |
tree | 853c3349bcba1f65aa5f14547d16ad8946bea902 /eclass | |
parent | Updated ssp.c in -r1 with patch from bug #65892 thanks to Kevin F. Quinn <co@... (diff) | |
download | gentoo-2-8f13f955167b6eeda6c5e255f52fcd8cdd132071.tar.gz gentoo-2-8f13f955167b6eeda6c5e255f52fcd8cdd132071.tar.bz2 gentoo-2-8f13f955167b6eeda6c5e255f52fcd8cdd132071.zip |
changed cp -a to cp -a recursive... to overcome permissions QA problem.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/zproduct.eclass | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/eclass/zproduct.eclass b/eclass/zproduct.eclass index a36a203dfa1c..50fcaffdc4db 100644 --- a/eclass/zproduct.eclass +++ b/eclass/zproduct.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/zproduct.eclass,v 1.17 2004/10/19 19:51:12 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/zproduct.eclass,v 1.18 2005/02/19 20:20:00 radek Exp $ # Author: Jason Shoemaker <kutsuya@gentoo.org> # This eclass is designed to streamline the construction of @@ -58,7 +58,8 @@ zproduct_src_install() do_install) debug-print-section do_install # Copy everything that's left to ${D}${ZP_DIR} - cp -a ${S}/* ${D}/${ZP_DIR}/${PF} ;; + # modified to not copy ownership (QA) + cp --recursive --no-dereference --preserve=timestamps,mode,links ${S}/* ${D}/${ZP_DIR}/${PF} ;; all) debug-print-section all |