mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
./configure does not take much time. And is certainly orders of magnitude slower than the build itself. Let's keep predictable parallelism by running sub-configure serially. Reported-by: Toralf Förster Closes: https://bugs.gentoo.org/790563 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
13 lines
586 B
Diff
13 lines
586 B
Diff
https://bugs.gentoo.org/790563
|
|
--- a/configure
|
|
+++ b/configure
|
|
@@ -355,7 +355,7 @@ for app_dir in $app_dirs; do
|
|
echo ""
|
|
elif test $app_dir != erts; then
|
|
echo $cmd_str >./configure.result.command
|
|
- eval $cmd_str 1>./configure.result.stdout 2>./configure.result.stderr || echo "fatal" > "./configure.result.failed" &
|
|
+ eval $cmd_str 1>./configure.result.stdout 2>./configure.result.stderr || echo "fatal" > "./configure.result.failed"
|
|
else
|
|
# ERTS configure gets to use stdout/stderr; the others are printed when done...
|
|
echo "=== Running configure in $ERL_TOP/erts ==="
|