m2t3: Configure: cf_time always in C locale
authorJarkko Hietaniemi <jhi@iki.fi>
Tue, 5 Aug 1997 22:08:04 +0000 (10:08 +1200)
committerTim Bunce <Tim.Bunce@ig.co.uk>
Wed, 6 Aug 1997 12:00:00 +0000 (00:00 +1200)
So that the $Config{cf_time} is in English format.
Technique similar to that of forcing awk to use . as the radix character.

p5p-msgid: 199708061827.VAA09623@alpha.hut.fi

Configure

index 19a7e16..09daa56 100755 (executable)
--- a/Configure
+++ b/Configure
@@ -2048,7 +2048,7 @@ esac
 
 
 : who configured the system
-cf_time=`$date 2>&1`
+cf_time=`LC_ALL=C; export LC_ALL; $date 2>&1`
 cf_by=`(logname) 2>/dev/null`
 case "$cf_by" in "")
        cf_by=`(whoami) 2>/dev/null`