mirror of
https://git.yoctoproject.org/poky
synced 2026-03-08 00:09:40 +01:00
If a build is started in a deep directory structure, or in a path with
long directory names the installation of linux-libc-headers will fail
with:
| make[2]: execvp: /bin/sh: Argument list too long
| make[2]: ***
>From within the kernel Makefiles themselves.
The solution is to patch the kernel build rules with the following
change:
[
scripts/Makefile.headersinst: install headers from scratch file
If headers_install is executed from a deep/long directory structure, the
shell's maximum argument length can be execeeded, which breaks the operation
with:
| make[2]: execvp: /bin/sh: Argument list too long
| make[2]: ***
By dumping the input files to a scratch file and using xargs to read the
input list from the scratch file, we can avoid blowing out the maximum
argument size and install headers in a long path name environment.
]
Until this change, or a similar one, is merged into the mainline kernel, this
change should be applied to any 3.7 or greater libc-headers build.
Upstream-status: Pending
(From OE-Core rev: 1e63a3b7b7915d40bb59976a02b9f53968997ed3)
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
48 lines
2.0 KiB
Diff
48 lines
2.0 KiB
Diff
From e60cc1b011bf0f1acdb7e5168b7bed4ebb78c91f Mon Sep 17 00:00:00 2001
|
|
From: Bruce Ashfield <bruce.ashfield@windriver.com>
|
|
Date: Wed, 9 Jan 2013 16:24:39 -0500
|
|
Subject: [PATCH] scripts/Makefile.headersinst: install headers from scratch file
|
|
|
|
If headers_install is executed from a deep/long directory structure, the
|
|
shell's maximum argument length can be execeeded, which breaks the operation
|
|
with:
|
|
|
|
| make[2]: execvp: /bin/sh: Argument list too long
|
|
| make[2]: ***
|
|
|
|
By dumping the input files to a scratch file and using xargs to read the
|
|
input list from the scratch file, we can avoid blowing out the maximum
|
|
argument size and install headers in a long path name environment.
|
|
|
|
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
|
|
---
|
|
scripts/Makefile.headersinst | 4 +++-
|
|
1 files changed, 3 insertions(+), 1 deletions(-)
|
|
|
|
diff --git a/scripts/Makefile.headersinst b/scripts/Makefile.headersinst
|
|
index 06ba4a7..536d722 100644
|
|
--- a/scripts/Makefile.headersinst
|
|
+++ b/scripts/Makefile.headersinst
|
|
@@ -71,7 +71,7 @@ printdir = $(patsubst $(INSTALL_HDR_PATH)/%/,%,$(dir $@))
|
|
quiet_cmd_install = INSTALL $(printdir) ($(words $(all-files))\
|
|
file$(if $(word 2, $(all-files)),s))
|
|
cmd_install = \
|
|
- $(PERL) $< $(installdir) $(SRCARCH) $(input-files); \
|
|
+ xargs $(PERL) $< $(installdir) $(SRCARCH) < $(INSTALL_HDR_PATH)/.input-files; \
|
|
for F in $(wrapper-files); do \
|
|
echo "\#include <asm-generic/$$F>" > $(installdir)/$$F; \
|
|
done; \
|
|
@@ -100,7 +100,9 @@ targets += $(install-file)
|
|
$(install-file): scripts/headers_install.pl $(input-files) FORCE
|
|
$(if $(unwanted),$(call cmd,remove),)
|
|
$(if $(wildcard $(dir $@)),,$(shell mkdir -p $(dir $@)))
|
|
+ @echo $(input-files) > $(INSTALL_HDR_PATH)/.input-files
|
|
$(call if_changed,install)
|
|
+ @rm $(INSTALL_HDR_PATH)/.input-files
|
|
|
|
else
|
|
__headerscheck: $(subdirs) $(check-file)
|
|
--
|
|
1.7.0.4
|
|
|