sid_com
sid_com

Reputation: 25107

Perl update - should I reinstall modules?

Should I reinstall the modules when updating from Perl 5.14 to 5.14.1?

Upvotes: 3

Views: 151

Answers (1)

Alex
Alex

Reputation: 5893

No, Perl will add the 5.14.0 INC path to the 5.14.1 INC path so you shouldn't have to reinstall any modules as Perl maintains binary compatibility between minor versions. Any new modules you install will just be visible to 5.14.1, though.

You might want to use something like App::perlbrew if you do want to keep your installations segregated.

Upvotes: 6

Related Questions