mirror of
https://salsa.debian.org/srivasta/make-dfsg.git
synced 2025-02-07 13:03:08 +00:00
* When presented with a very very long command line (e.g. WebKit's linking of libWebCore.la in current git), make fails to execute the command as it doesn't split the command line to fit within the limits. There is a patch used by people to solve this (gentoo, etc). Adam Conrad has provided a patch to fix this. (Closes: #688601). * Pre-4.0 make had an memory corruption issue that caused repeated execution of a specific makefile to display the cirruption. Running with make 4.0 does not show the issue. (Closes: #682895). * recently, the Multi-Arch: foreign tag was added toth make binary package. Jakub Wilk pointed out that this is not correct, some of the make interfaces are actually architecture-dependent. Reverting that change. * Bug fix #688601: "fails to execute extraordinarily long command lines", thanks to Daniel Stone * Bug fix #682895: "incorrect variable handling and corruption", thanks to Tim Spriggs
25 lines
715 B
Diff
25 lines
715 B
Diff
From f98d17b3adfa8a00ab61ece3c9ce9531905919fd Mon Sep 17 00:00:00 2001
|
|
From: Paul Smith <psmith@gnu.org>
|
|
Date: Sun, 12 Jan 2014 00:13:22 -0500
|
|
Subject: [PATCH 5/9] * commands.c: [SV 40789] Remove unneeded header dlfcn.h
|
|
|
|
---
|
|
commands.c | 2 --
|
|
1 file changed, 2 deletions(-)
|
|
|
|
diff --git a/commands.c b/commands.c
|
|
index f910358..eda75df 100644
|
|
--- a/commands.c
|
|
+++ b/commands.c
|
|
@@ -14,8 +14,6 @@ A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
You should have received a copy of the GNU General Public License along with
|
|
this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
-#include <dlfcn.h>
|
|
-
|
|
#include "makeint.h"
|
|
#include "filedef.h"
|
|
#include "dep.h"
|
|
--
|
|
2.0.0.rc0
|
|
|