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 dc96c83..64c67d9 100644 (file)
@@ -1,4 +1,10 @@
 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>
 
        Fix PR 9436.
index 8a9b5ad..43b7fa8 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";