commit: c07cc3d46a451ff73b8e465b08bd3bbb71843239
Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 2 16:25:44 2018 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Fri Mar 2 16:25:44 2018 +0000
URL: https://gitweb.gentoo.org/proj/releng.git/commit/?id=c07cc3d4
tools-uclibc/run.sh: don't do parallel runs
tools-uclibc/run.sh | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/tools-uclibc/run.sh b/tools-uclibc/run.sh
index ec06593e..61dd936b 100755
--- a/tools-uclibc/run.sh
+++ b/tools-uclibc/run.sh
@@ -56,10 +56,8 @@ main() {
# if catalyst is using snapcache, bug #519656
for arch in amd64 i686; do
for flavor in hardened vanilla; do
- (
- do_stages ${arch} ${flavor}
- [[ $? == 1 ]] && echo "FAILURE at ${arch} ${flavor} " | tee zzz.log
- ) &
+ do_stages ${arch} ${flavor}
+ [[ $? == 1 ]] && echo "FAILURE at ${arch} ${flavor} " | tee zzz.log
done
done
}