diff options
author | Ali Polatel <hawking@gentoo.org> | 2008-10-26 21:54:32 +0000 |
---|---|---|
committer | Ali Polatel <hawking@gentoo.org> | 2008-10-26 21:54:32 +0000 |
commit | 62b423847cceb9d47f027173e03cafb07bc87119 (patch) | |
tree | cbffd9dbb53615721d8c81c572ac56a2ac04336b /eclass | |
parent | Do not run ldconfig when installing. (diff) | |
download | gentoo-2-62b423847cceb9d47f027173e03cafb07bc87119.tar.gz gentoo-2-62b423847cceb9d47f027173e03cafb07bc87119.tar.bz2 gentoo-2-62b423847cceb9d47f027173e03cafb07bc87119.zip |
Quoting.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/python.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/python.eclass b/eclass/python.eclass index a206eda11e88..8a3ab7e1d953 100644 --- a/eclass/python.eclass +++ b/eclass/python.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.50 2008/10/26 21:21:34 hawking Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.51 2008/10/26 21:54:32 hawking Exp $ # @ECLASS: python.eclass # @MAINTAINER: @@ -173,7 +173,7 @@ python_mod_compile() { myroot="${ROOT%/}" # respect ROOT - for f in $@; do + for f in "$@"; do [[ -f "${myroot}/${f}" ]] && myfiles+=("${myroot}/${f}") done |