From: Paul Eggert Date: Thu, 28 Sep 2006 22:07:42 +0000 (+0000) Subject: * tests/rm/fail-eperm: Unset BASH_ENV, CDPATH, and ENV, too; X-Git-Tag: v6.3~11 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f2d5658c08733d5adabcf88d0123414a3656d718;p=thirdparty%2Fcoreutils.git * tests/rm/fail-eperm: Unset BASH_ENV, CDPATH, and ENV, too; suggested for Debian stable, which uses Perl 5.8.4. --- diff --git a/ChangeLog b/ChangeLog index e5a3539650..f9bb134657 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-09-28 Paul Eggert + + * tests/rm/fail-eperm: Unset BASH_ENV, CDPATH, and ENV, too; + suggested for Debian stable, which uses Perl 5.8.4. + 2006-09-28 Jim Meyering Automatically generated dependencies are important even diff --git a/tests/rm/fail-eperm b/tests/rm/fail-eperm index 0b5dca743d..632ae1e92a 100755 --- a/tests/rm/fail-eperm +++ b/tests/rm/fail-eperm @@ -55,7 +55,7 @@ my $verbose = $ENV{VERBOSE} && $ENV{VERBOSE} eq 'yes'; $ENV{LC_ALL} = 'C'; # Set up a safe, well-known environment -delete $ENV{PATH}; +delete @ENV{qw(BASH_ENV CDPATH ENV PATH)}; $ENV{IFS} = ''; my @dir_list = qw(/tmp /var/tmp /usr/tmp);