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 AF636138334 for ; Sat, 13 Apr 2019 10:54:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A78D6E08F9; Sat, 13 Apr 2019 10:54:31 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 7C406E08F9 for ; Sat, 13 Apr 2019 10:54:30 +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 83A54340ECE for ; Sat, 13 Apr 2019 10:54:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1468E57E for ; Sat, 13 Apr 2019 10:54:26 +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: <1555152858.2ebfa50ee3ca5bed1f32046d363551acb95f042a.blueness@gentoo> Subject: [gentoo-commits] proj/releng:master commit in: tools-musl/ X-VCS-Repository: proj/releng X-VCS-Files: tools-musl/run-arm64.sh tools-musl/run-armv7a.sh X-VCS-Directories: tools-musl/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 2ebfa50ee3ca5bed1f32046d363551acb95f042a X-VCS-Branch: master Date: Sat, 13 Apr 2019 10:54:26 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 677bf5db-cb93-4fc2-a8de-2b5af9e4cc97 X-Archives-Hash: 12e9188f731d32ebac94b38551c7cb95 commit: 2ebfa50ee3ca5bed1f32046d363551acb95f042a Author: Anthony G. Basile gentoo org> AuthorDate: Sat Apr 13 10:54:07 2019 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Sat Apr 13 10:54:18 2019 +0000 URL: https://gitweb.gentoo.org/proj/releng.git/commit/?id=2ebfa50e tools-musl: fix do_stage(), see commit 189b6291 Signed-off-by: Anthony G. Basile gentoo.org> tools-musl/run-arm64.sh | 2 +- tools-musl/run-armv7a.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools-musl/run-arm64.sh b/tools-musl/run-arm64.sh index 200b33de..6b20710f 100755 --- a/tools-musl/run-arm64.sh +++ b/tools-musl/run-arm64.sh @@ -49,7 +49,7 @@ main() { done for flavor in hardened vanilla; do - do_stages ${flavor} + do_stages "arm64" ${flavor} [[ $? == 1 ]] && echo "FAILURE at ${arch} ${flavor} " | tee zzz.log done } diff --git a/tools-musl/run-armv7a.sh b/tools-musl/run-armv7a.sh index bf5bd753..35f14193 100755 --- a/tools-musl/run-armv7a.sh +++ b/tools-musl/run-armv7a.sh @@ -53,7 +53,7 @@ main() { done for flavor in hardened vanilla; do - do_stages ${flavor} + do_stages "armv7a_hardfp" ${flavor} [[ $? == 1 ]] && echo "FAILURE at ${arch} ${flavor} " | tee zzz.log done }