]> git.ipfire.org Git - thirdparty/gcc.git/commit - gcc/Makefile.in
gcc: Fix "argument list too long" from install-plugins
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 3 Dec 2021 03:00:04 +0000 (22:00 -0500)
committerJeff Law <jeffreyalaw@gmail.com>
Fri, 3 Dec 2021 03:00:04 +0000 (22:00 -0500)
commit66e157188bd2f789809e17e85f917534c9381599
treec0e7a80a0a6c5492f855ae81a96641255b0d626c
parent711084c9450c49b372e177d94ae99fc642e1cc73
gcc: Fix "argument list too long" from install-plugins

When building in longer build paths (200+ characters), the
"echo $(PLUGIN_HEADERS)" from the install-plugins target would cause an
"argument list too long error" on some systems.

Avoid this by calling make's sort function on the list which removes
duplicates and stops the overflow from reaching the echo command.
The original sort is left to handle the the .h and .def files.

2021-10-26 Richard Purdie <richard.purdie@linuxfoundation.org>

gcc/ChangeLog:

* Makefile.in: Fix "argument list too long" from install-plugins.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
gcc/Makefile.in