From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C25521382C5 for ; Fri, 2 Mar 2018 16:25:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E740CE099F; Fri, 2 Mar 2018 16:25:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C4FD6E099F for ; Fri, 2 Mar 2018 16:25:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D4D0A335C30 for ; Fri, 2 Mar 2018 16:25:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 281EF1CC for ; Fri, 2 Mar 2018 16:25:50 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1520007944.c07cc3d46a451ff73b8e465b08bd3bbb71843239.blueness@gentoo> Subject: [gentoo-commits] proj/releng:master commit in: tools-uclibc/ X-VCS-Repository: proj/releng X-VCS-Files: tools-uclibc/run.sh X-VCS-Directories: tools-uclibc/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: c07cc3d46a451ff73b8e465b08bd3bbb71843239 X-VCS-Branch: master Date: Fri, 2 Mar 2018 16:25:50 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 8adafcff-3147-4e5e-b9e4-5ebf72cbdf95 X-Archives-Hash: 5acbb0dfb95692f0eecc771f0a62a3bb commit: c07cc3d46a451ff73b8e465b08bd3bbb71843239 Author: Anthony G. Basile gentoo org> AuthorDate: Fri Mar 2 16:25:44 2018 +0000 Commit: Anthony G. Basile gentoo 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 }