as those listed in $ENV{PATH} when searching for binaries
p4raw-id: //depot/perl@29410
$USE_IPC_RUN $USE_IPC_OPEN3 $WARN
];
- $VERSION = '0.36';
+ $VERSION = '0.36_01';
$VERBOSE = 0;
$DEBUG = 0;
$WARN = 1;
return MM->maybe_command($command);
} else {
- for my $dir (split /\Q$Config::Config{path_sep}\E/, $ENV{PATH}) {
+ for my $dir ((split /\Q$Config::Config{path_sep}\E/, $ENV{PATH}),
+ File::Spec->curdir()
+ ) {
my $abs = File::Spec->catfile($dir, $command);
return $abs if $abs = MM->maybe_command($abs);
}