Subject: | AIX PPC64 - Not able prepend the current directory to @INC in Perl 5.26.0 |
Below code is not able prepend the current directory to @INC in Perl 5.26.0.
So perl is not able load modules form the current directory.
use File::Basename qw(dirname basename);
use Cwd qw(abs_path);
use lib dirname(abs_path($0));