aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2019-04-13 06:54:07 -0400
committerAnthony G. Basile <blueness@gentoo.org>2019-04-13 06:54:18 -0400
commit2ebfa50ee3ca5bed1f32046d363551acb95f042a (patch)
tree96158a31f78f362f97bc0e55e55a2b7da2e814e1
parenttools-systemd: USE=suid for glibc on arm64 systemd (diff)
downloadreleng-2ebfa50ee3ca5bed1f32046d363551acb95f042a.tar.gz
releng-2ebfa50ee3ca5bed1f32046d363551acb95f042a.tar.bz2
releng-2ebfa50ee3ca5bed1f32046d363551acb95f042a.zip
tools-musl: fix do_stage(), see commit 189b6291
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
-rwxr-xr-xtools-musl/run-arm64.sh2
-rwxr-xr-xtools-musl/run-armv7a.sh2
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
}