From 84b92ef6b4df753ccc49f4a2b191ee0f936c665d Mon Sep 17 00:00:00 2001 From: Rudi Heitbaum Date: Sat, 14 May 2022 06:54:00 +0000 Subject: [PATCH] make: fails to execute extraordinarily long command lines - further fix --- .../make-02-fix-large-command-line-on-POSIX-systems.patch | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/packages/devel/make/patches/make-02-fix-large-command-line-on-POSIX-systems.patch b/packages/devel/make/patches/make-02-fix-large-command-line-on-POSIX-systems.patch index 0e4cc27430..12ac8b767a 100644 --- a/packages/devel/make/patches/make-02-fix-large-command-line-on-POSIX-systems.patch +++ b/packages/devel/make/patches/make-02-fix-large-command-line-on-POSIX-systems.patch @@ -44,14 +44,12 @@ diff --git a/src/job.c b/src/job.c index 3bcec38..734c591 100644 --- a/src/job.c +++ b/src/job.c -@@ -26,6 +26,14 @@ this program. If not, see . */ +@@ -26,6 +26,12 @@ this program. If not, see . */ #include "variable.h" #include "os.h" -+#if defined (HAVE_LINUX_BINFMTS_H) && defined (HAVE_SYS_USER_H) +#include +#include -+#endif +#ifndef PAGE_SIZE +# define PAGE_SIZE (sysconf(_SC_PAGESIZE)) +#endif