Home
last modified time | relevance | path

Searched refs:maybe_command (Results 1 – 18 of 18) sorted by relevance

/openbsd/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/t/
H A DMM_Cygwin.t107 ok(MM->maybe_command($comspec), qq{'$comspec' should be executable"});
114 ok(!MM->maybe_command($cdrive), qq{'$cdrive' should never be executable});
121 ok(MM->maybe_command($Config{perlpath}), qq{'$Config{perlpath}' should be executable});
H A DMM_OS2.t212 is( ExtUtils::MM_OS2->maybe_command( $dir ), undef,
218 is( ExtUtils::MM_OS2->maybe_command( $noext ), $noext,
225 is( ExtUtils::MM_OS2->maybe_command( $noexe ), $exe,
232 is( ExtUtils::MM_OS2->maybe_command( $nocmd ), $cmd,
H A DMM_NW5.t51 is( $MM->maybe_command( $comspec ),
54 like( $MM->maybe_command( $comspec2 ),
62 ok( ! $MM->maybe_command( 'not_a_command.com' ),
H A DMM_Win32.t51 is( $MM->maybe_command( $comspec ),
54 like( $MM->maybe_command( $comspec2 ),
62 ok( ! $MM->maybe_command( 'not_a_command.com' ),
H A DMM_Unix.t183 ok !$t->maybe_command('command') ,"non executable file isn't a command";
186 ok ($t->maybe_command('command'), "executable file is a command");
/openbsd/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils/
H A DMM_Cygwin.pm123 sub maybe_command { subroutine
130 ? $self->SUPER::maybe_command($file) # Unix
131 : ExtUtils::MM_Win32->maybe_command($file); # Win32
H A DMM_OS2.pm100 sub maybe_command { subroutine
H A DMM_Win32.pm96 sub maybe_command { subroutine
H A DMM_Unix.pm1180 next unless $self->maybe_command($abs);
1315 if ( $self->maybe_command($maybefile) ) {
1329 if ($self->maybe_command($origcmd) && grep { $_ eq $origdir } @absdirs) {
2898 sub maybe_command { subroutine
H A DMM_VMS.pm234 next unless $vmsfile = $self->maybe_command($name);
282 sub maybe_command { subroutine
H A DMM_Any.pm161 return $self->maybe_command($command);
170 push @possibles, $abs if $abs = $self->maybe_command($abs);
/openbsd/gnu/usr.bin/perl/cpan/ExtUtils-Install/t/lib/MakeMaker/Test/
H A DUtils.pm424 return MM->maybe_command($command);
433 push @possibles, $abs if $abs = MM->maybe_command($abs);
/openbsd/gnu/usr.bin/perl/cpan/CPAN/lib/CPAN/
H A DTarzip.pm57 my @cand = MM->maybe_command($what);
64 if (MM->maybe_command($abs)) {
H A DFTP.pm1117 unless ($ftpbin && length $ftpbin && MM->maybe_command($ftpbin)) {
H A DDistribution.pm904 unless (MM->maybe_command($patchbin)) {
/openbsd/gnu/usr.bin/perl/cpan/Archive-Tar/t/
H A D09_roundtrip.t24 return $_cmd if (-x $_cmd or $_cmd = MM->maybe_command($_cmd));
30 return $abs if (-x $abs or $abs = MM->maybe_command($abs));
/openbsd/gnu/usr.bin/perl/cpan/IPC-Cmd/lib/IPC/
H A DCmd.pm241 return MM->maybe_command($command);
250 push @possibles, $abs if $abs = MM->maybe_command($abs);
/openbsd/gnu/usr.bin/perl/cpan/CPAN/lib/
H A DCPAN.pm958 return MM->maybe_command($perl)
992 if (MM->maybe_command($perl) && _perl_is_same($perl)) {