termux-packages/packages/zsh/Src-exec.c.patch

28 lines
753 B
Diff

diff -u -r ../zsh-5.6/Src/exec.c ./Src/exec.c
--- ../zsh-5.6/Src/exec.c 2018-09-03 14:58:01.000000000 +0000
+++ ./Src/exec.c 2018-09-04 21:31:29.499488209 +0000
@@ -553,7 +553,7 @@
if (t0 == ct) {
argv[-1] = "sh";
winch_unblock();
- execve("/bin/sh", argv - 1, newenvp);
+ execve("@TERMUX_PREFIX@/bin/sh", argv - 1, newenvp);
}
}
} else
@@ -2739,9 +2739,12 @@
sigtrapped[SIGEXIT] = 0;
#ifdef HAVE_NICE
/* Check if we should run background jobs at a lower priority. */
- if ((how & Z_ASYNC) && isset(BGNICE))
- if (nice(5) < 0)
+ if ((how & Z_ASYNC) && isset(BGNICE)) {
+ errno = 0;
+ nice(5);
+ if (errno != 0)
zwarn("nice(5) failed: %e", errno);
+ }
#endif /* HAVE_NICE */
return 0;