summaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>1997-08-06 10:08:04 +1200
committerTim Bunce <Tim.Bunce@ig.co.uk>1997-08-07 00:00:00 +1200
commit7792a3d729e8aee4b1cc995dd6dddc0daaf04fcf (patch)
tree494762cddf7111590a411c05cc951334de1fae85 /Configure
parent463fd7c2910aa20e9063b7d3b508454856f766e6 (diff)
downloadperl-7792a3d729e8aee4b1cc995dd6dddc0daaf04fcf.tar.gz
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
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/Configure b/Configure
index 19a7e169a2..09daa56cff 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`