From 593da4499f31375fbf4216dcb93a4bcda54f3cec Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bryan=20=C3=98stergaard?= Date: Sat, 3 Feb 2007 02:10:23 +0000 Subject: [PATCH] Make sure to clean up all orphaned .py[co] files, bug 114269. --- eclass/python.eclass | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eclass/python.eclass b/eclass/python.eclass index cea3cd57511d..a359c12f1d1c 100644 --- a/eclass/python.eclass +++ b/eclass/python.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.30 2007/02/03 00:18:52 kloeri Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.31 2007/02/03 02:10:23 kloeri Exp $ # # Author: Alastair Tse # @@ -217,8 +217,8 @@ python_mod_cleanup() { for path in ${SEARCH_PATH}; do einfo "Cleaning orphaned Python bytecode from ${path} .." - for obj in $(find ${path} -name *.pyc); do - src_py="${obj%c}" + for obj in $(find ${path} -name *.py[co]); do + src_py="${obj%[co]}" if [ ! -f "${src_py}" ]; then einfo "Purging ${src_py}[co]" rm -f ${src_py}[co] -- 2.26.2