mirror of
https://salsa.debian.org/srivasta/make-dfsg.git
synced 2025-01-18 11:27:37 +00:00
Record make-dfsg (4.1-9.1) in archive suite sid
This commit is contained in:
commit
46275f1a78
2 changed files with 13 additions and 0 deletions
8
debian/changelog
vendored
8
debian/changelog
vendored
|
@ -1,3 +1,11 @@
|
|||
make-dfsg (4.1-9.1) unstable; urgency=medium
|
||||
|
||||
* Non-maintainer upload.
|
||||
* Ensure the stack limit is reset when make re-execs itself.
|
||||
(Closes: #853213)
|
||||
|
||||
-- James Cowgill <jcowgill@debian.org> Tue, 31 Jan 2017 16:31:57 +0000
|
||||
|
||||
make-dfsg (4.1-9) unstable; urgency=low
|
||||
|
||||
* Reword the manual page. While the wording included in the manual page
|
||||
|
|
5
main.c
5
main.c
|
@ -2423,6 +2423,11 @@ main (int argc, char **argv, char **envp)
|
|||
exit (WIFEXITED(r) ? WEXITSTATUS(r) : EXIT_FAILURE);
|
||||
}
|
||||
#else
|
||||
#ifdef SET_STACK_SIZE
|
||||
/* Reset limits, if necessary. */
|
||||
if (stack_limit.rlim_cur)
|
||||
setrlimit (RLIMIT_STACK, &stack_limit);
|
||||
#endif
|
||||
exec_command ((char **)nargv, environ);
|
||||
#endif
|
||||
free (aargv);
|
||||
|
|
Loading…
Reference in a new issue