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