summaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>1999-01-21 08:22:50 +0000
committerJarkko Hietaniemi <jhi@iki.fi>1999-01-21 08:22:50 +0000
commit59b83a6fedb1cbe070abf139ffcf761b15f35c7c (patch)
tree347d3117ee23bbc8514140e3d90579b487b2e1dd /Configure
parente7fb4fcc32f3c99c65223673d1c5ff75c8e9d3b3 (diff)
downloadperl-59b83a6fedb1cbe070abf139ffcf761b15f35c7c.tar.gz
The LANGUAGE mirrors LC_ALL usage.
p4raw-id: //depot/cfgperl@2652
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure7
1 files changed, 5 insertions, 2 deletions
diff --git a/Configure b/Configure
index ef8ba6b0e0..0fbb11adc3 100755
--- a/Configure
+++ b/Configure
@@ -20,7 +20,7 @@
# $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $
#
-# Generated on Thu Jan 21 00:01:12 EET 1999 [metaconfig 3.0 PL70]
+# Generated on Thu Jan 21 10:23:50 EET 1999 [metaconfig 3.0 PL70]
# (with additional metaconfig patches by jhi@iki.fi)
cat >/tmp/c1$$ <<EOF
@@ -2433,7 +2433,7 @@ none) osvers='' ;;
esac
: who configured the system
-cf_time=`LC_ALL=C; export LC_ALL; $date 2>&1`
+cf_time=`LC_ALL=C; LANGUAGE=C; export LC_ALL; export LANGUAGE; $date 2>&1`
cf_by=`(logname) 2>/dev/null`
case "$cf_by" in
"")
@@ -3025,16 +3025,19 @@ echo ".)"
if test 0 -eq "$subversion"; then
version=`LC_ALL=C; export LC_ALL; \
+ LANGUAGE=C; export LANGUAGE; \
echo $baserev $patchlevel | \
$awk '{ printf "%.3f\n", $1 + $2/1000.0 }'`
else
version=`LC_ALL=C; export LC_ALL; \
+ LANGUAGE=C; export LANGUAGE; \
echo $baserev $patchlevel $subversion | \
$awk '{ printf "%.5f\n", $1 + $2/1000.0 + $3/100000.0 }'`
fi
: Figure out perl API version. Perhaps this should be in patchlevel.h
if test "$subversion" -lt 50; then
apiversion=`LC_ALL=C; export LC_ALL; \
+ LANGUAGE=C; export LANGUAGE; \
echo $baserev $patchlevel | \
$awk '{ printf "%.3f\n", $1 + $2/1000.0 }'`
else