hurd: Try shell in posix_spawn* only in compat mode

Reported by Bruno Haible <bruno@clisp.org>
This commit is contained in:
Samuel Thibault 2020-12-26 15:12:04 +01:00
parent f380868f6d
commit 13adfa34af

View File

@ -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. */