From: Jarkko Hietaniemi Date: Tue, 5 Aug 1997 22:08:04 +0000 (+1200) Subject: m2t3: Configure: cf_time always in C locale X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7792a3d729e8aee4b1cc995dd6dddc0daaf04fcf;p=p5sagit%2Fp5-mst-13.2.git m2t3: Configure: cf_time always in C locale 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 --- diff --git a/Configure b/Configure index 19a7e16..09daa56 100755 --- 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`