Adam Prime x443 wrote:
Assuming i was upgrading a machine running RC4 to RC5, what is the
easiest way to remove RC4 so RC5 will install?

make uninstall in the old build directory says it's depreciated
(looking at the makefile), but offers no automated alternative?  Will
it do the job or do I really need to go through the perl lib
directories and manually delete stuff?

Any of the following two should do:

find /usr/lib/perl5 | grep Apache2 | xargs rm -rf
find /usr/lib/perl5 -name 'Apache2' -exec rm -rf {} \;

adjust /usr/lib/perl5 to point to the root of your perl lib.

be careful though when you do 'rm -rf' :)

--
__________________________________________________________________
Stas Bekman            JAm_pH ------> Just Another mod_perl Hacker
http://stason.org/     mod_perl Guide ---> http://perl.apache.org
mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com
http://modperlbook.org http://apache.org   http://ticketmaster.com

Reply via email to