* linux-low.c (linux_create_inferior): Try execv before execvp.
authorDaniel Jacobowitz <drow@false.org>
Wed, 20 Jun 2007 18:54:21 +0000 (18:54 +0000)
committerDaniel Jacobowitz <drow@false.org>
Wed, 20 Jun 2007 18:54:21 +0000 (18:54 +0000)
* spu-low.c (spu_create_inferior): Likewise.

gdb/gdbserver/ChangeLog
gdb/gdbserver/linux-low.c
gdb/gdbserver/spu-low.c

index 2a06b99f228001a819f44ae74eba738785f5413a..1b96c684e879caa1a40d633cb7ec75ac350f15fa 100644 (file)
@@ -1,3 +1,8 @@
+2007-06-20  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * linux-low.c (linux_create_inferior): Try execv before execvp.
+       * spu-low.c (spu_create_inferior): Likewise.
+
 2007-06-13  Mike Frysinger  <vapier@gentoo.org>
 
        * linux-low.c (linux_create_inferior): Change execv to execvp.
index 1ea3ccc0f96609ffc53b155a06412ade7cc718a2..067a63290f30b38660761b83dcfcf4df84872dfd 100644 (file)
@@ -165,7 +165,9 @@ linux_create_inferior (char *program, char **allargs)
 
       setpgid (0, 0);
 
-      execvp (program, allargs);
+      execv (program, allargs);
+      if (errno == ENOENT)
+       execvp (program, allargs);
 
       fprintf (stderr, "Cannot exec %s: %s.\n", program,
               strerror (errno));
index 22988246fb7f4a2789d921a76c00a12a544bfed4..77f671eb249f34066c2d7923e2bf4f64c24dfb23 100644 (file)
@@ -278,7 +278,9 @@ spu_create_inferior (char *program, char **allargs)
 
       setpgid (0, 0);
 
-      execvp (program, allargs);
+      execv (program, allargs);
+      if (errno == ENOENT)
+       execvp (program, allargs);
 
       fprintf (stderr, "Cannot exec %s: %s.\n", program,
               strerror (errno));