[open-ils-commits] r19704 - branches/rel_2_1/Open-ILS/src/extras (dbs)
svn at svn.open-ils.org
svn at svn.open-ils.org
Fri Mar 11 15:38:47 EST 2011
Author: dbs
Date: 2011-03-11 15:38:42 -0500 (Fri, 11 Mar 2011)
New Revision: 19704
Modified:
branches/rel_2_1/Open-ILS/src/extras/Makefile.install
Log:
LANG=C results in SQL_ASCII encoding by default for PostgreSQL, which isn't cool
We want LC_CTYPE=C and LC_COLLATE=C, and SERVER_ENCODING=UTF8.
The docs have been adjusted as 8.4 and up now offer database-level
--lc-ctype / --lc-collate options for createdb command.
Modified: branches/rel_2_1/Open-ILS/src/extras/Makefile.install
===================================================================
--- branches/rel_2_1/Open-ILS/src/extras/Makefile.install 2011-03-11 20:37:50 UTC (rev 19703)
+++ branches/rel_2_1/Open-ILS/src/extras/Makefile.install 2011-03-11 20:38:42 UTC (rev 19704)
@@ -379,7 +379,7 @@
$(APT_TOOL) install $(PGSQL_CLIENT_DEBS_84)
install_pgsql_server_debs_84:
- LANG=C $(APT_TOOL) install $(PGSQL_SERVER_DEBS_84)
+ $(APT_TOOL) install $(PGSQL_SERVER_DEBS_84)
install_pgsql_client_debs_83:
$(APT_TOOL) install $(PGSQL_CLIENT_DEBS_83)
More information about the open-ils-commits
mailing list