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-musl/
Date: Sat, 13 Apr 2019 10:54:32
Message-Id: 1555152858.2ebfa50ee3ca5bed1f32046d363551acb95f042a.blueness@gentoo
1 commit: 2ebfa50ee3ca5bed1f32046d363551acb95f042a
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 13 10:54:07 2019 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 13 10:54:18 2019 +0000
6 URL: https://gitweb.gentoo.org/proj/releng.git/commit/?id=2ebfa50e
7
8 tools-musl: fix do_stage(), see commit 189b6291
9
10 Signed-off-by: Anthony G. Basile <blueness <AT> gentoo.org>
11
12 tools-musl/run-arm64.sh | 2 +-
13 tools-musl/run-armv7a.sh | 2 +-
14 2 files changed, 2 insertions(+), 2 deletions(-)
15
16 diff --git a/tools-musl/run-arm64.sh b/tools-musl/run-arm64.sh
17 index 200b33de..6b20710f 100755
18 --- a/tools-musl/run-arm64.sh
19 +++ b/tools-musl/run-arm64.sh
20 @@ -49,7 +49,7 @@ main() {
21 done
22
23 for flavor in hardened vanilla; do
24 - do_stages ${flavor}
25 + do_stages "arm64" ${flavor}
26 [[ $? == 1 ]] && echo "FAILURE at ${arch} ${flavor} " | tee zzz.log
27 done
28 }
29
30 diff --git a/tools-musl/run-armv7a.sh b/tools-musl/run-armv7a.sh
31 index bf5bd753..35f14193 100755
32 --- a/tools-musl/run-armv7a.sh
33 +++ b/tools-musl/run-armv7a.sh
34 @@ -53,7 +53,7 @@ main() {
35 done
36
37 for flavor in hardened vanilla; do
38 - do_stages ${flavor}
39 + do_stages "armv7a_hardfp" ${flavor}
40 [[ $? == 1 ]] && echo "FAILURE at ${arch} ${flavor} " | tee zzz.log
41 done
42 }