diff options
author | Jim Meyering <jim@meyering.net> | 1998-08-29 18:05:53 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1998-08-29 18:05:53 +0000 |
commit | e29225aa01b14013789215bf8d8ce5fcdb09a7a9 (patch) | |
tree | 102ae52b35610a2affed64b5bac99bbd27d097ff /tests/ls-2/quoting | |
parent | 8bfd3a7d705dfb1bdc9157b8b1124bd625d961f1 (diff) | |
download | coreutils-e29225aa01b14013789215bf8d8ce5fcdb09a7a9.tar.xz |
use ENV{PROG}, not ENV{LS}
Diffstat (limited to 'tests/ls-2/quoting')
-rwxr-xr-x | tests/ls-2/quoting | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ls-2/quoting b/tests/ls-2/quoting index cba514c84..40e999a68 100755 --- a/tests/ls-2/quoting +++ b/tests/ls-2/quoting @@ -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; |