diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-08-23 17:55:38 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-08-23 17:55:38 +0000 |
commit | fcb058f166350828f189cdd16f2ae1400de527fc (patch) | |
tree | d2ad32f4daa0668b1fb13300ac04933fb8e228aa /app-editors | |
parent | Don't use cp -a. (diff) | |
download | gentoo-2-fcb058f166350828f189cdd16f2ae1400de527fc.tar.gz gentoo-2-fcb058f166350828f189cdd16f2ae1400de527fc.tar.bz2 gentoo-2-fcb058f166350828f189cdd16f2ae1400de527fc.zip |
Don't use cp -a.
(Portage version: 2.0.51.22)
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/xxe/ChangeLog | 5 | ||||
-rw-r--r-- | app-editors/xxe/xxe-2.11.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/app-editors/xxe/ChangeLog b/app-editors/xxe/ChangeLog index 04bf8a5dd07a..9439a66e4dd6 100644 --- a/app-editors/xxe/ChangeLog +++ b/app-editors/xxe/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-editors/xxe # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/xxe/ChangeLog,v 1.24 2005/07/21 04:35:52 rizzo Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/xxe/ChangeLog,v 1.25 2005/08/23 17:50:39 flameeyes Exp $ + + 23 Aug 2005; Diego Pettenò <flameeyes@gentoo.org> xxe-2.11.ebuild: + Don't use cp -a. *xxe-2.11 (21 Jul 2005) diff --git a/app-editors/xxe/xxe-2.11.ebuild b/app-editors/xxe/xxe-2.11.ebuild index 7b15ea61bfea..e5a90c0274da 100644 --- a/app-editors/xxe/xxe-2.11.ebuild +++ b/app-editors/xxe/xxe-2.11.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/app-editors/xxe/xxe-2.11.ebuild,v 1.1 2005/07/21 04:35:52 rizzo Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/xxe/xxe-2.11.ebuild,v 1.2 2005/08/23 17:50:39 flameeyes Exp $ MY_PV="${PV/./}" MY_PV="${MY_PV/_p/p}" @@ -21,7 +21,7 @@ INSTALLDIR=/opt/${PN} src_install() { dodir ${INSTALLDIR} - cp -a ${S}/* ${D}/${INSTALLDIR} + cp -pPR ${S}/* ${D}/${INSTALLDIR} dodir /etc/env.d echo -e "PATH=${INSTALLDIR}/bin\nROOTPATH=${INSTALLDIR}" > ${D}/etc/env.d/10xxe |