diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 1996-11-26 08:53:48 +0000 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 1996-11-26 08:53:48 +0000 |
commit | ae2c6adddd1efc3b5e012d88866aaf8e9e472137 (patch) | |
tree | b1ae7bcde93fb7b8efc27190fdee67e21cd03829 /usr.sbin/amd | |
parent | 9e232727ad45734586fd5c946dd8b2db9cfb2ab5 (diff) | |
download | src-ae2c6adddd1efc3b5e012d88866aaf8e9e472137.tar.gz src-ae2c6adddd1efc3b5e012d88866aaf8e9e472137.zip |
Use LC_TIME=C
Notes
Notes:
svn path=/head/; revision=19973
Diffstat (limited to 'usr.sbin/amd')
-rw-r--r-- | usr.sbin/amd/config/newvers.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/amd/config/newvers.sh b/usr.sbin/amd/config/newvers.sh index a5109662d3b8..ab761473dee4 100644 --- a/usr.sbin/amd/config/newvers.sh +++ b/usr.sbin/amd/config/newvers.sh @@ -38,7 +38,7 @@ # # @(#)newvers.sh 8.1 (Berkeley) 6/6/93 # -# $Id: newvers.sh,v 5.2.2.1 1992/02/09 15:11:19 jsp beta $ +# $Id: newvers.sh,v 1.1.1.1 1994/05/26 05:22:06 rgrimes Exp $ # PATH=/usr/ucb:/bin:/usr/bin:$PATH if [ $# -ne 3 ]; then echo "Usage: newvers program arch os" >&2; exit 1; fi @@ -48,7 +48,7 @@ v=`cat $version` u=${USER-${LOGNAME-root}} h=`hostname` #h=`expr "$h" : '\([^.]*\)'` -t=`date` +t=`LC_TIME=C date` if [ ! -s "$d../config/RELEASE" -o ! -s "$d../text/COPYRIGHT" ]; then echo ERROR: config file missing >&2 exit 1 |