diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2006-06-05 20:03:52 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2006-06-05 20:03:52 +0000 |
commit | 8818e69748b0cbf4d0c63d4ca770aa4e7b2a1b8d (patch) | |
tree | 9cf646c520d0b43f06f68eaf69663f9415e5d316 | |
parent | 0d82817eb4d3111c64c4b671aae0e4697d2785ac (diff) | |
download | coreutils-8818e69748b0cbf4d0c63d4ca770aa4e7b2a1b8d.tar.xz |
Don't assign to PROG; no longer needed
now that Makefile.am sets PROG to the basename.
-rwxr-xr-x | tests/misc/expand | 2 | ||||
-rwxr-xr-x | tests/misc/fold | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/tests/misc/expand b/tests/misc/expand index 24a3a509c..09373d59b 100755 --- a/tests/misc/expand +++ b/tests/misc/expand @@ -18,8 +18,6 @@ use strict; (my $program_name = $0) =~ s|.*/||; -$ENV{PROG} = 'expand'; - # Turn off localization of executable's ouput. @ENV{qw(LANGUAGE LANG LC_ALL)} = ('C') x 3; diff --git a/tests/misc/fold b/tests/misc/fold index c799b78bf..d070d4586 100755 --- a/tests/misc/fold +++ b/tests/misc/fold @@ -31,8 +31,6 @@ use strict; (my $program_name = $0) =~ s|.*/||; -$ENV{PROG} = 'fold'; - # Turn off localization of executable's ouput. @ENV{qw(LANGUAGE LANG LC_ALL)} = ('C') x 3; |