about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2020-12-26 15:12:04 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2020-12-26 15:12:04 +0100
commit13adfa34aff03fd9f1c1612b537a0d736ddb6c2b (patch)
tree38f683a00538fb9716e5fb259efa18594b068d4a
parentf380868f6dcfdeae8d449d556298d9c41012ed8d (diff)
downloadglibc-13adfa34aff03fd9f1c1612b537a0d736ddb6c2b.tar.gz
glibc-13adfa34aff03fd9f1c1612b537a0d736ddb6c2b.tar.xz
glibc-13adfa34aff03fd9f1c1612b537a0d736ddb6c2b.zip
hurd: Try shell in posix_spawn* only in compat mode
Reported by Bruno Haible <bruno@clisp.org>
-rw-r--r--sysdeps/mach/hurd/spawni.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/mach/hurd/spawni.c b/sysdeps/mach/hurd/spawni.c
index 178b271e4e..2aeed683fe 100644
--- a/sysdeps/mach/hurd/spawni.c
+++ b/sysdeps/mach/hurd/spawni.c
@@ -838,7 +838,7 @@ __spawni (pid_t *pid, const char *file,
       err = exec (execfile);
     __mach_port_deallocate (__mach_task_self (), execfile);
 
-    if (err == ENOEXEC)
+    if ((err == ENOEXEC) && (xflags & SPAWN_XFLAGS_TRY_SHELL) != 0)
       {
 	/* The file is accessible but it is not an executable file.
 	   Invoke the shell to interpret it as a script.  */