search for: 956bc20

Displaying 1 result from an estimated 1 matches for "956bc20".

Did you mean: 956,20
2011 Aug 11
0
[PATCH] all .py are under /usr
avoids traversing /proc --- recipe/image-minimizer.ks.in | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/recipe/image-minimizer.ks.in b/recipe/image-minimizer.ks.in index 2518c5c..956bc20 100644 --- a/recipe/image-minimizer.ks.in +++ b/recipe/image-minimizer.ks.in @@ -5,7 +5,7 @@ %post echo "Removing python source files" -find / -name '*.py' -exec rm -f {} \; -find / -name '*.pyo' -exec rm -f {} \; +find /usr -name '*.py' -exec rm -f {} \; +find...