Package: release.debian.org Severity: normal User: release.debian.org@packages.debian.org Usertags: unblock X-Debbugs-CC: srivasta@debian.org Hi, Please unblock package make-dfsg This fixes the important bug #853213 in make which should in turn fix the RC bug #853214 in openjdk-8 (without any changes needed to that package). The debdiff is attached. Thanks, James unblock make-dfsg/4.1-9.1 -- System Information: Debian Release: stretch/sid APT prefers unstable-debug APT policy: (500, 'unstable') Architecture: amd64 (x86_64) Kernel: Linux 4.8.0-2-amd64 (SMP w/4 CPU cores) Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /usr/bin/dash Init: systemd (via /run/systemd/system)
diff -u make-dfsg-4.1/debian/changelog make-dfsg-4.1/debian/changelog
--- make-dfsg-4.1/debian/changelog
+++ make-dfsg-4.1/debian/changelog
@@ -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
diff -u make-dfsg-4.1/main.c make-dfsg-4.1/main.c
--- make-dfsg-4.1/main.c
+++ make-dfsg-4.1/main.c
@@ -2423,6 +2423,11 @@
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);
Attachment:
signature.asc
Description: OpenPGP digital signature