in reply to Perl upgrade

Bundle perl 5.16, run your unit tests, and fix any fallout. If your test coverage is good enough, that should catch most of the changes.

You might also find A Porter's Tale of interest.

Replies are listed 'Best First'.
Re^2: Perl upgrade
by prashantktyagi (Scribe) on Jun 13, 2012 at 11:03 UTC
    Hi..

    after upgarde Executing command `pwd` on shell gives this error..

    Legacy library will be removed from the Perl core distribution in the + next r release. Please install it from the CPAN distribution Perl4::CoreLib +s. It eing used at , line .
    I am not getting this...`pwd` is a part of unix shell..Am I missing something?

      I am not getting this...`pwd` is a part of unix shell..Am I missing something?

      Yes, the full path to this pwd program

      Do not add @INC to your $PATH

        Yeah...I figured out this..Removing Perl path resolved the issue.. actually I am using MKS toolkit on windows..as `pwd` is written in perl in mks , when i used system latest perl..it gave me this error.... thanks all