linuxOS_AP05/debian/base-linaro/binary/usr/share/perl5/Debconf/Path.pm

22 lines
291 B
Perl
Raw Normal View History

2025-09-26 01:40:02 +00:00
#!/usr/bin/perl
# This file was preprocessed, do not edit!
package Debconf::Path;
use strict;
use File::Spec;
sub find {
my $program=shift;
my @path=File::Spec->path();
for my $dir (@path) {
my $file=File::Spec->catfile($dir, $program);
return 1 if -x $file;
}
return '';
}
1