#! /bin/sh

# This script is called by install_perl_modules.sh to correct the permissions
# to the shared libraries for the Perl modules.


echo Correcting permissions in $*
find "$*" -name '*.so' -exec chmod u+w {} \;


