Control: tags -1 pending

Hi!

I've uploaded the attached NMU to DELAYED/7 which fixes this bug (it
simply applies the patch from upstream). Please tell me if I should
cancel it.

Thanks,
James
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 <jcowg...@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

Reply via email to