From: dbs Date: Fri, 11 Mar 2011 20:39:03 +0000 (+0000) Subject: LANG=C results in SQL_ASCII encoding by default for PostgreSQL, which isn't cool X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=a5495d9e6366bce8016f75342c9f335a4c87fb4a;p=Evergreen.git 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. git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_2_0@19705 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/extras/Makefile.install b/Open-ILS/src/extras/Makefile.install index c17bfe6642..60ebc49bec 100644 --- a/Open-ILS/src/extras/Makefile.install +++ b/Open-ILS/src/extras/Makefile.install @@ -379,7 +379,7 @@ install_pgsql_client_debs_84: $(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)