From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id B3C8413877A for ; Wed, 18 Jun 2014 11:14:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9050FE0A61; Wed, 18 Jun 2014 11:14:38 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 158E0E0A61 for ; Wed, 18 Jun 2014 11:14:38 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1A95C33F844 for ; Wed, 18 Jun 2014 11:14:37 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id D02BC187DE for ; Wed, 18 Jun 2014 11:14:35 +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: <1403090087.4065dd4c8886b0dda01518a8db1941d0af16f41b.blueness@gentoo> Subject: [gentoo-commits] proj/releng:master commit in: tools-musl/ X-VCS-Repository: proj/releng X-VCS-Files: tools-musl/run-mipsel3.sh X-VCS-Directories: tools-musl/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 4065dd4c8886b0dda01518a8db1941d0af16f41b X-VCS-Branch: master Date: Wed, 18 Jun 2014 11:14:35 +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: 3a85fb1d-b44f-4c10-8c28-9ffbbd32644a X-Archives-Hash: a0aa4e225a2b22597fa81f396c69273e commit: 4065dd4c8886b0dda01518a8db1941d0af16f41b Author: Anthony G. Basile gentoo org> AuthorDate: Wed Jun 18 11:13:14 2014 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Wed Jun 18 11:14:47 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/releng.git;a=commit;h=4065dd4c tools-musl: fix comment for run-mipsel3.sh --- tools-musl/run-mipsel3.sh | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/tools-musl/run-mipsel3.sh b/tools-musl/run-mipsel3.sh old mode 100644 new mode 100755 index 46cf291..5a8b315 --- a/tools-musl/run-mipsel3.sh +++ b/tools-musl/run-mipsel3.sh @@ -93,7 +93,7 @@ do_stages() { main() { >zzz.log -# catalyst -s current | tee -a zzz.log >snapshot.log 2>snapshot.err + catalyst -s current | tee -a zzz.log >snapshot.log 2>snapshot.err for arch in mipsel3; do for flavor in vanilla; do @@ -101,16 +101,16 @@ main() { done done -# for arch in mipsel3; do -# for flavor in vanilla; do -# do_stages ${arch} ${flavor} -# ret=$? -# if [[ $? == 1 ]]; then -# echo "FAILURE at ${arch} ${flavor} " | tee zzz.log -# return 1 -# fi -# done -# done + for arch in mipsel3; do + for flavor in vanilla; do + do_stages ${arch} ${flavor} + ret=$? + if [[ $? == 1 ]]; then + echo "FAILURE at ${arch} ${flavor} " | tee zzz.log + return 1 + fi + done + done } main $1 &