From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([69.77.167.62] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Jf8kq-0003OD-2X for garchives@archives.gentoo.org; Fri, 28 Mar 2008 07:12:00 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 77137E07CD; Fri, 28 Mar 2008 07:11:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 4EE64E07CD for ; Fri, 28 Mar 2008 07:11:59 +0000 (UTC) Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id E5FF766FFD for ; Fri, 28 Mar 2008 07:11:58 +0000 (UTC) Received: from hawking by stork.gentoo.org with local (Exim 4.68) (envelope-from ) id 1Jf8kn-00030k-PM for gentoo-commits@lists.gentoo.org; Fri, 28 Mar 2008 07:11:57 +0000 From: "Ali Polatel (hawking)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, hawking@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: python.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: python.eclass X-VCS-Directories: eclass X-VCS-Committer: hawking X-VCS-Committer-Name: Ali Polatel Content-Type: text/plain; charset=utf8 Message-Id: Sender: Ali Polatel Date: Fri, 28 Mar 2008 07:11:57 +0000 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 261429f4-0632-43c4-8e86-1d05c4056217 X-Archives-Hash: 0616ef3c886d6a12a1d329773a548b32 hawking 08/03/28 07:11:57 Modified: python.eclass Log: Add quoting for find, thanks to Yanik Gleyzer, bug 214830 Revision Changes Path 1.34 eclass/python.eclass file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/python.ecla= ss?rev=3D1.34&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/python.ecla= ss?rev=3D1.34&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/python.ecla= ss?r1=3D1.33&r2=3D1.34 Index: python.eclass =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/eclass/python.eclass,v retrieving revision 1.33 retrieving revision 1.34 diff -u -r1.33 -r1.34 --- python.eclass 28 Feb 2008 20:20:32 -0000 1.33 +++ python.eclass 28 Mar 2008 07:11:57 -0000 1.34 @@ -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.33 2008/02/2= 8 20:20:32 dev-zero Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.34 2008/03/2= 8 07:11:57 hawking Exp $ =20 # @ECLASS: python.eclass # @MAINTAINER: @@ -214,7 +214,7 @@ =20 for path in ${SEARCH_PATH}; do einfo "Cleaning orphaned Python bytecode from ${path} .." - for obj in $(find ${path} -name *.py[co]); do + for obj in $(find ${path} -name '*.py[co]'); do src_py=3D"${obj%[co]}" if [ ! -f "${src_py}" ]; then einfo "Purging ${src_py}[co]" --=20 gentoo-commits@lists.gentoo.org mailing list