diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-12-16 11:11:34 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-12-16 11:11:34 +0000 |
commit | beca439acdbda172595c9a74acf1be1f70028f1c (patch) | |
tree | bca703d4bcc7e4022a51e0f0291e807583c65ab8 /dev-lang/smarteiffel | |
parent | Remove GNUish cp -a call. Bug #103487. (diff) | |
download | gentoo-2-beca439acdbda172595c9a74acf1be1f70028f1c.tar.gz gentoo-2-beca439acdbda172595c9a74acf1be1f70028f1c.tar.bz2 gentoo-2-beca439acdbda172595c9a74acf1be1f70028f1c.zip |
Remove GNUish cp -a call. Bug #103487.
(Portage version: 2.0.53)
Diffstat (limited to 'dev-lang/smarteiffel')
-rw-r--r-- | dev-lang/smarteiffel/ChangeLog | 6 | ||||
-rw-r--r-- | dev-lang/smarteiffel/smarteiffel-2.2_rc1.ebuild | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/dev-lang/smarteiffel/ChangeLog b/dev-lang/smarteiffel/ChangeLog index a77fd2fa0fe7..a2c42135563e 100644 --- a/dev-lang/smarteiffel/ChangeLog +++ b/dev-lang/smarteiffel/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-lang/smarteiffel # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/smarteiffel/ChangeLog,v 1.17 2005/12/03 21:03:59 carlo Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/smarteiffel/ChangeLog,v 1.18 2005/12/16 11:07:34 flameeyes Exp $ + + 16 Dec 2005; Diego Pettenò <flameeyes@gentoo.org> + smarteiffel-2.2_rc1.ebuild: + Remove GNUish cp -a call. Bug #103487. *smarteiffel-2.2_rc1 (03 Dec 2005) diff --git a/dev-lang/smarteiffel/smarteiffel-2.2_rc1.ebuild b/dev-lang/smarteiffel/smarteiffel-2.2_rc1.ebuild index 209440646afd..deecf5386840 100644 --- a/dev-lang/smarteiffel/smarteiffel-2.2_rc1.ebuild +++ b/dev-lang/smarteiffel/smarteiffel-2.2_rc1.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/dev-lang/smarteiffel/smarteiffel-2.2_rc1.ebuild,v 1.2 2005/12/05 16:01:55 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/smarteiffel/smarteiffel-2.2_rc1.ebuild,v 1.3 2005/12/16 11:07:34 flameeyes Exp $ inherit toolchain-funcs multilib @@ -76,7 +76,7 @@ src_compile() { src_install () { dodir ${SE_DIR} - cp -a ${S}/{lib,tools,sys,bin} ${D}/${SE_DIR} || die + cp -pPR ${S}/{lib,tools,sys,bin} ${D}/${SE_DIR} || die # Create symlinks to the appropriate executable binaries. dodir /usr/bin @@ -91,7 +91,7 @@ src_install () { if use doc; then einfo "Installing documentation" dodir /usr/share/doc/${PF} - cp -a ${S}/{man,misc,tutorial,READ_ME.txt} ${D}/usr/share/doc/${PF} || die + cp -pPR ${S}/{man,misc,tutorial,READ_ME.txt} ${D}/usr/share/doc/${PF} || die fi # Setup 'SmartEiffel' environment variable. |