Record make-dfsg (4.1-9.1) in archive suite sid

This commit is contained in:
James Cowgill 2017-01-31 08:31:57 -08:00
commit 46275f1a78
2 changed files with 13 additions and 0 deletions

8
debian/changelog vendored
View file

@ -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
View file

@ -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);