You'll need the corresponding Perl binaries, if there's any chance anything was built differently between machines.
Here's my script for building a tar-gzip file that I use to update the sites I keep in sync:
cd /usr/local/
find lib/perl5 -name "*.a" -o -name "*.html" > /tmp/nocopy
gtar zcvf /tmp/Perl5.tar.gz lib/perl5 -X /tmp/nocopy bin/perl* bin/pod
+* lib/libperl*
rm -f /tmp/nocopy
This avoids copying the library and HTML doc files that aren't needed at the other sites. |