Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/releng:master commit in: tools-uclibc/
Date: Fri, 02 Mar 2018 16:25:53
Message-Id: 1520007944.c07cc3d46a451ff73b8e465b08bd3bbb71843239.blueness@gentoo
1 commit: c07cc3d46a451ff73b8e465b08bd3bbb71843239
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Fri Mar 2 16:25:44 2018 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Fri Mar 2 16:25:44 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/releng.git/commit/?id=c07cc3d4
7
8 tools-uclibc/run.sh: don't do parallel runs
9
10 tools-uclibc/run.sh | 6 ++----
11 1 file changed, 2 insertions(+), 4 deletions(-)
12
13 diff --git a/tools-uclibc/run.sh b/tools-uclibc/run.sh
14 index ec06593e..61dd936b 100755
15 --- a/tools-uclibc/run.sh
16 +++ b/tools-uclibc/run.sh
17 @@ -56,10 +56,8 @@ main() {
18 # if catalyst is using snapcache, bug #519656
19 for arch in amd64 i686; do
20 for flavor in hardened vanilla; do
21 - (
22 - do_stages ${arch} ${flavor}
23 - [[ $? == 1 ]] && echo "FAILURE at ${arch} ${flavor} " | tee zzz.log
24 - ) &
25 + do_stages ${arch} ${flavor}
26 + [[ $? == 1 ]] && echo "FAILURE at ${arch} ${flavor} " | tee zzz.log
27 done
28 done
29 }