Lines Matching full:path
262 'mpath|maintainer-path=s' => \$maintainer_path,
379 my $path = "${lk_path}MAINTAINERS";
381 $path = $maintainer_path;
383 …$path =~ s@^~([^/]*)@ $1 ? (getpwnam($1))[7] : ( $ENV{HOME} || $ENV{LOGDIR} || (getpwuid($<))[7])@…
386 if (-d $path) {
387 $path .= '/' if ($path !~ m@/$@);
392 }, "$path");
394 opendir(DIR, "$path") or die $!;
398 push(@mfiles, "$path$file") if ($file !~ /^\./);
401 } elsif (-f "$path") {
402 push(@mfiles, "$path");
404 die "$P: MAINTAINER file not found '$path'\n";
406 die "$P: No MAINTAINER files found in '$path'\n" if (scalar(@mfiles) == 0);
526 $file =~ s/^\Q${cur_path}\E//; #strip any absolute path
527 $file =~ s/^\Q${lk_path}\E//; #or the path to the lk tree
1406 foreach my $path (split(/:/, $ENV{PATH})) {
1407 if (-e "$path/$bin") {
1408 return "$path/$bin";
1418 foreach my $path (split(/:/, ".:$ENV{HOME}:.scripts")) {
1419 if (-e "$path/$conf") {
1420 return "$path/$conf";