diff options
author | Michał Górny <mgorny@gentoo.org> | 2012-10-25 17:42:39 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2012-10-25 17:42:39 +0000 |
commit | 684a408e8212dfe4ab65bc7f55f0bad108c20a29 (patch) | |
tree | 3b5f4eb85a61e97e2fbb71870703771ed61dc3f3 /eclass/distutils-r1.eclass | |
parent | Version bump. Thanks to LABBE Corentin (Montjoie) (diff) | |
download | historical-684a408e8212dfe4ab65bc7f55f0bad108c20a29.tar.gz historical-684a408e8212dfe4ab65bc7f55f0bad108c20a29.tar.bz2 historical-684a408e8212dfe4ab65bc7f55f0bad108c20a29.zip |
Add games/bin to lookup paths for rename_scripts().
Diffstat (limited to 'eclass/distutils-r1.eclass')
-rw-r--r-- | eclass/distutils-r1.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index 94b1d608ff20..fdbd20be0bc8 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/distutils-r1.eclass,v 1.6 2012/10/25 16:44:54 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/distutils-r1.eclass,v 1.7 2012/10/25 17:42:39 mgorny Exp $ # @ECLASS: distutils-r1 # @MAINTAINER: @@ -261,7 +261,7 @@ distutils-r1_python_install_all() { fi done - for f in "${D}"/{bin,sbin,usr/bin,usr/sbin}/*-"${EPYTHON}"; do + for f in "${D}"/{bin,sbin,usr/bin,usr/sbin,games/bin}/*-"${EPYTHON}"; do if [[ -x ${f} ]]; then debug-print "${FUNCNAME}: found executable at ${f#${D}/}" |