From: Jim Meyering Date: Fri, 26 Mar 2010 15:46:23 +0000 (+0100) Subject: tests: fix typos in envvar-check script X-Git-Tag: v8.5~35 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8915368ee3f9580155a8a3119a27e9615368a846;p=thirdparty%2Fcoreutils.git tests: fix typos in envvar-check script * tests/envvar-check: Fix variable name typos. Probably harmless, since no selected shell would fail to unset. --- diff --git a/tests/envvar-check b/tests/envvar-check index e31b941641..1dee9afb11 100644 --- a/tests/envvar-check +++ b/tests/envvar-check @@ -22,7 +22,7 @@ else as_unset=false fi -envvar_check_failed=0 +envvar_check_fail=0 vars=' _POSIX2_VERSION BLOCKSIZE @@ -49,7 +49,7 @@ do if eval test \"\${$var+set}\" = set; then echo "$0: the $var environment variable is set --" \ ' unset it and rerun this test' >&2 - envvar_check_failed=1 + envvar_check_fail=1 fi done