# HG changeset patch # User Christopher Rogers # Date 1304418690 0 # Node ID cb89a6cf5962b36c6fc69325694c6651c2f1370f # Parent 0dafc6cafa1905a178b1a3b52e648739720fe087 Tazwok now removes perllocal.pod from packages now. This file is in every perl package. diff -r 0dafc6cafa19 -r cb89a6cf5962 tazwok --- a/tazwok Sat Apr 30 21:17:27 2011 +0000 +++ b/tazwok Tue May 03 10:31:30 2011 +0000 @@ -906,12 +906,13 @@ report end-step } -# Remove .pyc and .pyo files from packages. +# Remove .pyc, .pyo and perllocal.pod files from packages. py_compiled_files_remove() { - report step "Removing all .pyc and .pyo files from package" + report step "Removing all .pyc, .pyo, and perllocal.pod files from package" find $fs -type f -name "*.pyc" -delete 2>/dev/null find $fs -type f -name "*.pyo" -delete 2>/dev/null + find $fs -type f -name "perllocal.pod" -delete 2>/dev/null report end-step }