Lines Matching full:path
31 It is used to add extra directories at the end of perl's search path so
33 located on perl's default search path.
37 search path if there is one.
70 my $path = $_;
72 if ($path eq '') {
77 print STDERR "DEBUG: $path\n" if DEBUG;
79 unless (-e $path
80 && ($path =~ m/(?:^|\/)MODULES.txt/ || -d $path)) {
86 if (-f $path) { # It's a MODULES.txt file
87 (my $dir = $path) =~ s|/[^/]*$||; # quick dirname
88 open my $fh, $path or die "Could not open $path: $!\n";
107 croak "All lines in $path must be a directory, not a file: $l"
112 push @INC, $path;