diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1997-08-06 10:08:04 +1200 |
---|---|---|
committer | Tim Bunce <Tim.Bunce@ig.co.uk> | 1997-08-07 00:00:00 +1200 |
commit | 7792a3d729e8aee4b1cc995dd6dddc0daaf04fcf (patch) | |
tree | 494762cddf7111590a411c05cc951334de1fae85 /Configure | |
parent | 463fd7c2910aa20e9063b7d3b508454856f766e6 (diff) | |
download | perl-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-x | Configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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` |