From 91184831a971a63439b0d162207dc2d11fc101e7 Mon Sep 17 00:00:00 2001
From: Eelco Dolstra <eelco.dolstra@logicblox.com>
Date: Thu, 11 Feb 2010 16:18:14 +0000
Subject: [PATCH] * Using the en_US locale gives a lot of warnings (because we
 don't   have it without glibc-locales).

svn path=/nixpkgs/trunk/; revision=19940
---
 pkgs/servers/sql/postgresql/8.4.x.nix | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pkgs/servers/sql/postgresql/8.4.x.nix b/pkgs/servers/sql/postgresql/8.4.x.nix
index bbf30c02636e..0d40e4708d2a 100644
--- a/pkgs/servers/sql/postgresql/8.4.x.nix
+++ b/pkgs/servers/sql/postgresql/8.4.x.nix
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
 
   buildInputs = [zlib ncurses readline];
 
-  LC_ALL = "en_US";
+  LC_ALL = "C";
 
   passthru = { inherit readline; };