diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-12-16 11:08:55 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-12-16 11:08:55 +0000 |
commit | 5a6e44a1615d698ba84ec5a02112d617a0af9e64 (patch) | |
tree | f6b00dc1d69dbb114fc49e64be3ca60ecc2ea524 /dev-lang/smarteiffel | |
parent | Remove GNUish cp -a call. Bug #103487. (diff) | |
download | historical-5a6e44a1615d698ba84ec5a02112d617a0af9e64.tar.gz historical-5a6e44a1615d698ba84ec5a02112d617a0af9e64.tar.bz2 historical-5a6e44a1615d698ba84ec5a02112d617a0af9e64.zip |
Remove GNUish cp -a call. Bug #103487.
Package-Manager: portage-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. |