tazwok rev 499

Tazwok now removes perllocal.pod from packages now. This file is in every perl package.
author Christopher Rogers <slaxemulator@gmail.com>
date Tue May 03 10:31:30 2011 +0000 (2011-05-03)
parents 0dafc6cafa19
children 4f141b1588b2
files tazwok
line diff
     1.1 --- a/tazwok	Sat Apr 30 21:17:27 2011 +0000
     1.2 +++ b/tazwok	Tue May 03 10:31:30 2011 +0000
     1.3 @@ -906,12 +906,13 @@
     1.4  	report end-step
     1.5  }
     1.6  
     1.7 -# Remove .pyc and .pyo files from packages.
     1.8 +# Remove .pyc, .pyo and perllocal.pod files from packages.
     1.9  py_compiled_files_remove()
    1.10  {
    1.11 -	report step "Removing all .pyc and .pyo files from package"
    1.12 +	report step "Removing all .pyc, .pyo, and perllocal.pod 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  	report end-step
    1.17  }
    1.18