abuild: check for ppc64le on config.guess
Currently, if aarch64 exists in config.guess, it is not updated. This breaks spl, which has aarch64 entry, but not ppc64le. update_config_guess should update config.guess if any of those does not exists.
This commit is contained in:
parent
7301f84f26
commit
f41036ac3a
@ -525,7 +525,7 @@ update_config_sub() {
|
|||||||
update_config_guess() {
|
update_config_guess() {
|
||||||
local changed=false
|
local changed=false
|
||||||
find . -name config.guess | while read f; do
|
find . -name config.guess | while read f; do
|
||||||
if grep -q aarch64 "$f"; then
|
if grep -q aarch64 "$f" && grep -q ppc64le "$f"; then
|
||||||
msg "No update needed for $f"
|
msg "No update needed for $f"
|
||||||
else
|
else
|
||||||
msg "Updating $f"
|
msg "Updating $f"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user