From: Jim Meyering Date: Tue, 20 Jan 2004 09:19:37 +0000 (+0000) Subject: Use TZ=UTC0, not TZ=utc (which isn't portable). X-Git-Tag: v5.1.2~116 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bf05ef79f354595f537c1cbff0a18ba7653c1eeb;p=thirdparty%2Fcoreutils.git Use TZ=UTC0, not TZ=utc (which isn't portable). Problem reported by Christian Krackowizer. Also, use +0000 rather than +0 to specify a time zone, as the documentation requires four digits. --- diff --git a/tests/touch/relative b/tests/touch/relative index 9d28303fbe..806f4b7c58 100755 --- a/tests/touch/relative +++ b/tests/touch/relative @@ -17,7 +17,7 @@ trap '(exit $?); exit $?' 1 2 13 15 framework_failure=0 mkdir -p $tmp || framework_failure=1 cd $tmp || framework_failure=1 -touch --date='2004-01-16 05:26:38 +0' f || framework_failure=1 +touch --date='2004-01-16 05:26:38 +0000' f || framework_failure=1 if test $framework_failure = 1; then echo "$0: failure in testing framework" 1>&2