This fixes the new location of CPANPLUS' bin/ directory in the ext/ tree
under core.
local $Params::Check::VERBOSE = 1;
-$VERSION = '0.38';
+$VERSION = '0.40';
=pod
require Exporter;
use vars qw[$VERSION @ISA @EXPORT];
- $VERSION = '0.38';
+ $VERSION = '0.40';
@ISA = qw[Exporter];
@EXPORT = qw[ BUILD_DIR BUILD ];
}
if ( $ENV{PERL_CORE} ) {
$old_env_path = $ENV{PATH};
$ENV{'PATH'} = join $Config{'path_sep'},
- grep { defined } "$FindBin::Bin/../../../bin", $ENV{'PATH'};
+ grep { defined } "$FindBin::Bin/../../CPANPLUS/bin", $ENV{'PATH'};
}