tazwok rev 503
Remove .packlist file in packages now too.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Wed May 04 13:12:02 2011 +0000 (2011-05-04) |
parents | 4f141b1588b2 |
children | 88800c1af28d 1165e2c0ac23 |
files | tazwok |
line diff
1.1 --- a/tazwok Wed May 04 12:48:21 2011 +0000 1.2 +++ b/tazwok Wed May 04 13:12:02 2011 +0000 1.3 @@ -906,13 +906,14 @@ 1.4 report end-step 1.5 } 1.6 1.7 -# Remove .pyc, .pyo and perllocal.pod files from packages. 1.8 +# Remove .pyc, .pyo, perllocal.pod and .packlist files from packages. 1.9 py_compiled_files_remove() 1.10 { 1.11 - report step "Removing all .pyc, .pyo, and perllocal.pod files from package" 1.12 + report step "Removing all .pyc, .pyo, perllocal.pod, and .packlist files from package" 1.13 find $fs -type f -name "*.pyc" -delete 2>/dev/null 1.14 find $fs -type f -name "*.pyo" -delete 2>/dev/null 1.15 find $fs -type f -name "perllocal.pod" -delete 2>/dev/null 1.16 + find $fs -type f -name ".packlist" -delete 2>/dev/null 1.17 report end-step 1.18 } 1.19