We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98640c3 commit 4a6fd46Copy full SHA for 4a6fd46
src/test/regress/pg_regress.sh
@@ -1,5 +1,5 @@
1
#! /bin/sh
2
-# $PostgreSQL: pgsql/src/test/regress/pg_regress.sh,v 1.49 2004/10/31 19:14:16 tgl Exp $
+# $PostgreSQL: pgsql/src/test/regress/pg_regress.sh,v 1.50 2004/11/17 18:06:04 tgl Exp $
3
4
me=`basename $0`
5
: ${TMPDIR=/tmp}
@@ -50,6 +50,14 @@ message(){
50
51
unset LC_COLLATE LC_CTYPE LC_MONETARY LC_MESSAGES LC_NUMERIC LC_TIME LC_ALL LANG LANGUAGE
52
53
+# On Windows the default locale may not be English, so force it
54
+case $host_platform in
55
+ *-*-cygwin*|*-*-mingw32*)
56
+ LANG=en
57
+ export LANG
58
+ ;;
59
+esac
60
+
61
62
# ----------
63
# Check for echo -n vs echo \c
0 commit comments