blob: 60539795c56d9f32a128241df46daa0687d87ede [file] [log] [blame]
Brad Bishopc68388fc2019-08-26 01:33:31 -04001From 2cb227cd8069c73242286f64183fb203f8d2618a Mon Sep 17 00:00:00 2001
Brad Bishopc342db32019-05-15 21:57:59 -04002From: Khem Raj <raj.khem@gmail.com>
3Date: Fri, 29 Mar 2013 09:26:37 +0400
Brad Bishopc68388fc2019-08-26 01:33:31 -04004Subject: [PATCH 12/36] gcc: Fix argument list too long error.
Brad Bishopc342db32019-05-15 21:57:59 -04005
6There would be an "Argument list too long" error when the
7build directory is longer than 200, this is caused by:
8
9headers=`echo $(PLUGIN_HEADERS) | tr ' ' '\012' | sort -u`
10
11The PLUGIN_HEADERS is too long before sort, so the "echo" can't handle
12it, use the $(sort list) of GNU make which can handle the too long list
13would fix the problem, the header would be short enough after sorted.
14The "tr ' ' '\012'" was used for translating the space to "\n", the
15$(sort list) doesn't need this.
16
17Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
18Signed-off-by: Khem Raj <raj.khem@gmail.com>
19
20Upstream-Status: Pending
21---
22 gcc/Makefile.in | 2 +-
23 1 file changed, 1 insertion(+), 1 deletion(-)
24
25diff --git a/gcc/Makefile.in b/gcc/Makefile.in
Brad Bishopc68388fc2019-08-26 01:33:31 -040026index 41f0f592ff4..0064a282488 100644
Brad Bishopc342db32019-05-15 21:57:59 -040027--- a/gcc/Makefile.in
28+++ b/gcc/Makefile.in
Brad Bishopc68388fc2019-08-26 01:33:31 -040029@@ -3537,7 +3537,7 @@ install-plugin: installdirs lang.install-plugin s-header-vars install-gengtype
Brad Bishopc342db32019-05-15 21:57:59 -040030 # We keep the directory structure for files in config or c-family and .def
31 # files. All other files are flattened to a single directory.
32 $(mkinstalldirs) $(DESTDIR)$(plugin_includedir)
33- headers=`echo $(PLUGIN_HEADERS) $$(cd $(srcdir); echo *.h *.def) | tr ' ' '\012' | sort -u`; \
34+ headers="$(sort $(PLUGIN_HEADERS) $$(cd $(srcdir); echo *.h *.def))"; \
35 srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`; \
36 for file in $$headers; do \
37 if [ -f $$file ] ; then \
38--
Brad Bishopc68388fc2019-08-26 01:33:31 -0400392.22.1
Brad Bishopc342db32019-05-15 21:57:59 -040040