From f41036ac3ae86a0511f3ee9071891f889200a1c7 Mon Sep 17 00:00:00 2001 From: Breno Leitao Date: Thu, 19 Jan 2017 12:18:48 -0500 Subject: 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. --- abuild.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/abuild.in b/abuild.in index d0bce33..ecd6fcc 100644 --- a/abuild.in +++ b/abuild.in @@ -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" -- cgit v1.2.3-70-g09d2