diff options
2 files changed, 51 insertions, 0 deletions
diff --git a/meta/recipes-kernel/linux-libc-headers/linux-libc-headers/scripts-Makefile.headersinst-install-headers-from-sc.patch b/meta/recipes-kernel/linux-libc-headers/linux-libc-headers/scripts-Makefile.headersinst-install-headers-from-sc.patch new file mode 100644 index 0000000000..be1ef2502f --- /dev/null +++ b/meta/recipes-kernel/linux-libc-headers/linux-libc-headers/scripts-Makefile.headersinst-install-headers-from-sc.patch | |||
@@ -0,0 +1,47 @@ | |||
1 | From e60cc1b011bf0f1acdb7e5168b7bed4ebb78c91f Mon Sep 17 00:00:00 2001 | ||
2 | From: Bruce Ashfield <bruce.ashfield@windriver.com> | ||
3 | Date: Wed, 9 Jan 2013 16:24:39 -0500 | ||
4 | Subject: [PATCH] scripts/Makefile.headersinst: install headers from scratch file | ||
5 | |||
6 | If headers_install is executed from a deep/long directory structure, the | ||
7 | shell's maximum argument length can be execeeded, which breaks the operation | ||
8 | with: | ||
9 | |||
10 | | make[2]: execvp: /bin/sh: Argument list too long | ||
11 | | make[2]: *** | ||
12 | |||
13 | By dumping the input files to a scratch file and using xargs to read the | ||
14 | input list from the scratch file, we can avoid blowing out the maximum | ||
15 | argument size and install headers in a long path name environment. | ||
16 | |||
17 | Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> | ||
18 | --- | ||
19 | scripts/Makefile.headersinst | 4 +++- | ||
20 | 1 files changed, 3 insertions(+), 1 deletions(-) | ||
21 | |||
22 | diff --git a/scripts/Makefile.headersinst b/scripts/Makefile.headersinst | ||
23 | index 06ba4a7..536d722 100644 | ||
24 | --- a/scripts/Makefile.headersinst | ||
25 | +++ b/scripts/Makefile.headersinst | ||
26 | @@ -71,7 +71,7 @@ printdir = $(patsubst $(INSTALL_HDR_PATH)/%/,%,$(dir $@)) | ||
27 | quiet_cmd_install = INSTALL $(printdir) ($(words $(all-files))\ | ||
28 | file$(if $(word 2, $(all-files)),s)) | ||
29 | cmd_install = \ | ||
30 | - $(PERL) $< $(installdir) $(SRCARCH) $(input-files); \ | ||
31 | + xargs $(PERL) $< $(installdir) $(SRCARCH) < $(INSTALL_HDR_PATH)/.input-files; \ | ||
32 | for F in $(wrapper-files); do \ | ||
33 | echo "\#include <asm-generic/$$F>" > $(installdir)/$$F; \ | ||
34 | done; \ | ||
35 | @@ -100,7 +100,9 @@ targets += $(install-file) | ||
36 | $(install-file): scripts/headers_install.pl $(input-files) FORCE | ||
37 | $(if $(unwanted),$(call cmd,remove),) | ||
38 | $(if $(wildcard $(dir $@)),,$(shell mkdir -p $(dir $@))) | ||
39 | + @echo $(input-files) > $(INSTALL_HDR_PATH)/.input-files | ||
40 | $(call if_changed,install) | ||
41 | + @rm $(INSTALL_HDR_PATH)/.input-files | ||
42 | |||
43 | else | ||
44 | __headerscheck: $(subdirs) $(check-file) | ||
45 | -- | ||
46 | 1.7.0.4 | ||
47 | |||
diff --git a/meta/recipes-kernel/linux-libc-headers/linux-libc-headers_3.7.bb b/meta/recipes-kernel/linux-libc-headers/linux-libc-headers_3.7.bb index 3d688b76eb..a363289988 100644 --- a/meta/recipes-kernel/linux-libc-headers/linux-libc-headers_3.7.bb +++ b/meta/recipes-kernel/linux-libc-headers/linux-libc-headers_3.7.bb | |||
@@ -1,4 +1,8 @@ | |||
1 | require linux-libc-headers.inc | 1 | require linux-libc-headers.inc |
2 | 2 | ||
3 | SRC_URI += "file://scripts-Makefile.headersinst-install-headers-from-sc.patch" | ||
4 | |||
5 | PR = "r1" | ||
6 | |||
3 | SRC_URI[md5sum] = "5323f3faadd051e83af605a63be5ea2e" | 7 | SRC_URI[md5sum] = "5323f3faadd051e83af605a63be5ea2e" |
4 | SRC_URI[sha256sum] = "dc08d87a579fe2918362e6666e503a95a76296419195cb499aa9dd4dbe171a9e" | 8 | SRC_URI[sha256sum] = "dc08d87a579fe2918362e6666e503a95a76296419195cb499aa9dd4dbe171a9e" |