gdb/
authorJan Kratochvil <jan.kratochvil@redhat.com>
Thu, 24 Jun 2010 18:24:03 +0000 (18:24 +0000)
committerJan Kratochvil <jan.kratochvil@redhat.com>
Thu, 24 Jun 2010 18:24:03 +0000 (18:24 +0000)
Fix GDB startup on readonly filesystem.
* charset.c (find_charset_names): Use PEX_USE_PIPES for pex_init.

gdb/ChangeLog
gdb/charset.c

index dc96c83501bf8c4372436fece4ec674e4fc0de91..64c67d93c13378669ff1dac2125b8309d7ed9adf 100644 (file)
@@ -1,3 +1,9 @@
+2010-06-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
+           Tom Tromey  <tromey@redhat.com>
+
+       Fix GDB startup on readonly filesystem.
+       * charset.c (find_charset_names): Use PEX_USE_PIPES for pex_init.
+
 2010-06-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
            Pedro Alves  <pedro@codesourcery.com>
 
index 8a9b5ad1d967d74d89bd899081240b2a40ff2c4e..43b7fa8f223583352d725580006499c7fad9ca68 100644 (file)
@@ -794,7 +794,7 @@ find_charset_names (void)
   set_in_environ (iconv_env, "LANGUAGE", "C");
   set_in_environ (iconv_env, "LC_ALL", "C");
 
-  child = pex_init (0, "iconv", NULL);
+  child = pex_init (PEX_USE_PIPES, "iconv", NULL);
 
   args[0] = "iconv";
   args[1] = "-l";