mirror of
https://gitlab.alpinelinux.org/alpine/abuild.git
synced 2024-12-26 00:42:22 +00:00
abuild.in: update autoconf test for riscv64
This commit is contained in:
parent
98c10731dc
commit
b0af30c5be
@ -635,7 +635,7 @@ mkusers() {
|
||||
# helper to update config.sub to a recent version
|
||||
update_config_sub() {
|
||||
find . -name config.sub | (local changed=false; while read f; do
|
||||
if ! ./$f armv6-alpine-linux-muslgnueabihf 2>/dev/null; then
|
||||
if ! ./$f riscv64-alpine-linux-musl 2>/dev/null; then
|
||||
msg "Updating $f"
|
||||
cp "$sharedir"/${f##*/} "$f" || return 1
|
||||
changed=true
|
||||
@ -648,7 +648,7 @@ update_config_sub() {
|
||||
# helper to update config.guess to a recent version
|
||||
update_config_guess() {
|
||||
find . -name config.guess | (local changed=false; while read f; do
|
||||
if grep -q aarch64 "$f" && grep -q ppc64le "$f"; then
|
||||
if grep -q aarch64 "$f" && grep -q ppc64le "$f" && grep -q riscv64 "$f"; then
|
||||
msg "No update needed for $f"
|
||||
else
|
||||
msg "Updating $f"
|
||||
|
Loading…
Reference in New Issue
Block a user