mirror of
https://git.openafs.org/openafs.git
synced 2025-01-18 23:10:58 +00:00
1bd03c9c22
The 'perl' binary may not be /usr/bin/perl, depending on the system. For example, on modern FreeBSD it tends to be /usr/local/bin/perl instead. To avoid relying on perl to be in a specific location, just run via /usr/bin/env instead, so we pick up perl from $PATH instead. Change-Id: Ic8dc247c82342ff79dfa80426c489ccb8e3e1450 Reviewed-on: https://gerrit.openafs.org/14144 Tested-by: Andrew Deason <adeason@sinenomine.net> Reviewed-by: Benjamin Kaduk <kaduk@mit.edu>
9 lines
149 B
Perl
Executable File
9 lines
149 B
Perl
Executable File
#!/usr/bin/env perl
|
|
|
|
use strict;
|
|
use warnings;
|
|
use lib $ENV{SOURCE} . "/tests-lib/perl5";
|
|
use mancheck_utils;
|
|
|
|
run_manpage_tests("src/bozo", "bos");
|