[open-ils-commits] r15488 - trunk/Open-ILS/src/extras (dbs)
svn at svn.open-ils.org
svn at svn.open-ils.org
Tue Feb 9 20:42:04 EST 2010
Author: dbs
Date: 2010-02-09 20:42:03 -0500 (Tue, 09 Feb 2010)
New Revision: 15488
Modified:
trunk/Open-ILS/src/extras/Makefile.install
Log:
Try to ensure that the PostgreSQL cluster gets initialized with a C locale
Modified: trunk/Open-ILS/src/extras/Makefile.install
===================================================================
--- trunk/Open-ILS/src/extras/Makefile.install 2010-02-09 22:11:51 UTC (rev 15487)
+++ trunk/Open-ILS/src/extras/Makefile.install 2010-02-10 01:42:03 UTC (rev 15488)
@@ -332,19 +332,19 @@
$(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 @@
# 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:
More information about the open-ils-commits
mailing list