1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-19 18:26:32 +02:00

use ENV{PROG}, not ENV{LS}

This commit is contained in:
Jim Meyering
1998-08-29 18:05:53 +00:00
parent 8bfd3a7d70
commit e29225aa01

View File

@@ -28,6 +28,6 @@ my @Tests =
my $save_temps = 0;
my $verbose = $ENV{VERBOSE};
my $prog = $ENV{LS} || 'ls';
my $prog = $ENV{PROG} || die "$0: \$PROG not specified in environment\n";
my $fail = run_tests ($program_name, $prog, \@Tests, $save_temps, $verbose);
exit $fail;