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 | b5623992f3048133d7418171f7d891a2f26e1f9a (patch) | |
tree | 66e237177942d9e58d0a9581256a7ca3a872eb17 /eclass/python.eclass | |
parent | Do not run ldconfig when installing. (diff) | |
download | historical-b5623992f3048133d7418171f7d891a2f26e1f9a.tar.gz historical-b5623992f3048133d7418171f7d891a2f26e1f9a.tar.bz2 historical-b5623992f3048133d7418171f7d891a2f26e1f9a.zip |
Quoting.
Diffstat (limited to 'eclass/python.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 |