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:
Breno Leitao 2017-01-19 12:18:48 -05:00 committed by Jakub Jirutka
parent 7301f84f26
commit f41036ac3a
1 changed files with 1 additions and 1 deletions

View File

@ -525,7 +525,7 @@ update_config_sub() {
update_config_guess() {
local changed=false
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"
else
msg "Updating $f"