Searched refs:maybe_command (Results 1 – 18 of 18) sorted by relevance
/openbsd/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/t/ |
H A D | MM_Cygwin.t | 107 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 D | MM_OS2.t | 212 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 D | MM_NW5.t | 51 is( $MM->maybe_command( $comspec ), 54 like( $MM->maybe_command( $comspec2 ), 62 ok( ! $MM->maybe_command( 'not_a_command.com' ),
|
H A D | MM_Win32.t | 51 is( $MM->maybe_command( $comspec ), 54 like( $MM->maybe_command( $comspec2 ), 62 ok( ! $MM->maybe_command( 'not_a_command.com' ),
|
H A D | MM_Unix.t | 183 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 D | MM_Cygwin.pm | 123 sub maybe_command { subroutine 130 ? $self->SUPER::maybe_command($file) # Unix 131 : ExtUtils::MM_Win32->maybe_command($file); # Win32
|
H A D | MM_OS2.pm | 100 sub maybe_command { subroutine
|
H A D | MM_Win32.pm | 96 sub maybe_command { subroutine
|
H A D | MM_Unix.pm | 1180 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 D | MM_VMS.pm | 234 next unless $vmsfile = $self->maybe_command($name); 282 sub maybe_command { subroutine
|
H A D | MM_Any.pm | 161 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 D | Utils.pm | 424 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 D | Tarzip.pm | 57 my @cand = MM->maybe_command($what); 64 if (MM->maybe_command($abs)) {
|
H A D | FTP.pm | 1117 unless ($ftpbin && length $ftpbin && MM->maybe_command($ftpbin)) {
|
H A D | Distribution.pm | 904 unless (MM->maybe_command($patchbin)) {
|
/openbsd/gnu/usr.bin/perl/cpan/Archive-Tar/t/ |
H A D | 09_roundtrip.t | 24 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 D | Cmd.pm | 241 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 D | CPAN.pm | 958 return MM->maybe_command($perl) 992 if (MM->maybe_command($perl) && _perl_is_same($perl)) {
|