diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2006-09-29 14:34:19 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2006-09-29 14:34:19 +0000 |
commit | fb072596d1fa605dad13db8ce137f28e3f35d152 (patch) | |
tree | aeab1e8a4afde0ce0dfaf211190b4276fdab856b /eclass | |
parent | Patch from upstream to fix segfault when exiting. Rev bump. (diff) | |
download | gentoo-2-fb072596d1fa605dad13db8ce137f28e3f35d152.tar.gz gentoo-2-fb072596d1fa605dad13db8ce137f28e3f35d152.tar.bz2 gentoo-2-fb072596d1fa605dad13db8ce137f28e3f35d152.zip |
Updated to not install files with executable permissions. Closing bug #133971.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/games-etmod.eclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/games-etmod.eclass b/eclass/games-etmod.eclass index 5a200d725c88..1cdee6dec5a4 100644 --- a/eclass/games-etmod.eclass +++ b/eclass/games-etmod.eclass @@ -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/eclass/games-etmod.eclass,v 1.10 2006/03/24 00:59:29 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/games-etmod.eclass,v 1.11 2006/09/29 14:34:19 wolf31o2 Exp $ inherit games @@ -33,15 +33,15 @@ games-etmod_src_install() { if [ -d ${MOD_NAME} ] ; then dodir ${bdir} - mv ${MOD_NAME} ${D}/${bdir}/ + cp -PR ${MOD_NAME} ${D}/${bdir}/ fi if [ -d etmain ] ; then dodir ${bdir} - mv etmain ${D}/${bdir}/ + cp -PR etmain ${D}/${bdir}/ fi if [ ! -z "`ls ${S}/* 2> /dev/null`" ] ; then dodir ${mdir} - mv ${S}/* ${D}/${mdir}/ + cp -PR ${S}/* ${D}/${mdir}/ fi if use dedicated; then |