How to uninstall a perl module

Moderator: cah

Post Reply
cah
General of the Army / Fleet Admiral / General of the Air Force
General of the Army / Fleet Admiral / General of the Air Force
Posts: 1342
Joined: Sun Aug 17, 2008 5:05 am

How to uninstall a perl module

Post by cah »

Most people just install Perl modules and don't bother uninstalling them.

Here is a normal procedure of installing Perl modules:

Code: Select all

% tar xvzf blah-1.2.3.tar.gz
% cd blah-1.2.3
% perl Makefile.PL
% make
% make test
% make install
Here is how to delete/remove/uninstall Perl modules:

Code: Select all

% cd blah-1.2.3
% make uninstall
CAH, The Great
Post Reply