From: Paul Eggert Date: Mon, 5 Jun 2006 20:03:52 +0000 (+0000) Subject: Don't assign to PROG; no longer needed X-Git-Tag: v6.0~327 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8818e69748b0cbf4d0c63d4ca770aa4e7b2a1b8d;p=thirdparty%2Fcoreutils.git Don't assign to PROG; no longer needed now that Makefile.am sets PROG to the basename. --- diff --git a/tests/misc/expand b/tests/misc/expand index 24a3a509c0..09373d59b6 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 c799b78bf4..d070d4586c 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;