diff options
author | 2013-02-10 16:15:05 +0000 | |
---|---|---|
committer | 2013-02-10 16:15:05 +0000 | |
commit | 0ce0db5962c02d86578dc3831101d7adafcba798 (patch) | |
tree | ddc51bd45516b128e54df20fee8e597796e11242 /eclass/distutils-r1.eclass | |
parent | Backport patch from upstream to fix recursive file indexing. (diff) | |
download | gentoo-2-0ce0db5962c02d86578dc3831101d7adafcba798.tar.gz gentoo-2-0ce0db5962c02d86578dc3831101d7adafcba798.tar.bz2 gentoo-2-0ce0db5962c02d86578dc3831101d7adafcba798.zip |
Temporarily disable egg_info since it causes problems with installing scripts.
Diffstat (limited to 'eclass/distutils-r1.eclass')
-rw-r--r-- | eclass/distutils-r1.eclass | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index 4434b1b84c8b..4a701df9b032 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/distutils-r1.eclass,v 1.51 2013/02/10 11:41:07 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/distutils-r1.eclass,v 1.52 2013/02/10 16:15:05 mgorny Exp $ # @ECLASS: distutils-r1 # @MAINTAINER: @@ -216,11 +216,12 @@ esetup.py() { fi # if setuptools is used, adjust egg_info path as well - if "${PYTHON:-python}" setup.py --help egg_info &>/dev/null; then - add_args+=( - egg_info --egg-base "${BUILD_DIR}" - ) - fi + # (disabled since it causes build not to install scripts) +# if "${PYTHON:-python}" setup.py --help egg_info &>/dev/null; then +# add_args+=( +# egg_info --egg-base "${BUILD_DIR}" +# ) +# fi add_args+=( build |