From e4bd9794d28041127dc7710fedf7fa8b6ee9283c Mon Sep 17 00:00:00 2001
From: dbs <dbs@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Date: Wed, 10 Feb 2010 01:42:03 +0000
Subject: [PATCH] Try to ensure that the PostgreSQL cluster gets initialized
 with a C locale

git-svn-id: svn://svn.open-ils.org/ILS/trunk@15488 dcc99617-32d9-48b4-a31d-7c20da2025e4
---
 Open-ILS/src/extras/Makefile.install | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Open-ILS/src/extras/Makefile.install b/Open-ILS/src/extras/Makefile.install
index dbbb2da453..2666c05f51 100644
--- a/Open-ILS/src/extras/Makefile.install
+++ b/Open-ILS/src/extras/Makefile.install
@@ -332,19 +332,19 @@ install_pgsql_client_debs_84:
 	$(APT_TOOL) install $(PGSQL_CLIENT_DEBS_84)
 
 install_pgsql_server_debs_84:
-	$(APT_TOOL) install $(PGSQL_SERVER_DEBS_84)
+	LANG=C $(APT_TOOL) install $(PGSQL_SERVER_DEBS_84)
 
 install_pgsql_client_debs_83:
 	$(APT_TOOL) install $(PGSQL_CLIENT_DEBS_83)
 
 install_pgsql_server_debs_83:
-	$(APT_TOOL) install $(PGSQL_SERVER_DEBS_83)
+	LANG=C $(APT_TOOL) install $(PGSQL_SERVER_DEBS_83)
 
 install_pgsql_client_debs_82:
 	$(APT_TOOL) install $(PGSQL_CLIENT_DEBS_82)
 
 install_pgsql_server_debs_82:
-	$(APT_TOOL) install $(PGSQL_SERVER_DEBS_82)
+	LANG=C $(APT_TOOL) install $(PGSQL_SERVER_DEBS_82)
 
 # Etch requires an explicit version to avoid PostgreSQL 7.4
 install_pgsql_client_debs_81:
@@ -352,7 +352,7 @@ install_pgsql_client_debs_81:
 
 # Etch requires an explicit version to avoid PostgreSQL 7.4
 install_pgsql_server_debs_81:
-	$(APT_TOOL) install $(PGSQL_SERVER_DEBS_81)
+	LANG=C $(APT_TOOL) install $(PGSQL_SERVER_DEBS_81)
 
 # Install the debian-specific dependencies for more modern distros
 install_extra_debs:
-- 
2.11.0