From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1791) id 99E293858D20; Mon, 30 Oct 2023 16:07:27 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 99E293858D20 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1698682047; bh=XjLUacX0MCLV2jdJJqI+pxAlPWx7Ek0DaOyA+znIbYQ=; h=From:To:Subject:Date:From; b=ubwz17rcD7p4BzGqbJwEr2rPYAzAJUvVqkjx8jRISxXHRinkdwvDbm5zzSgQmpkLN Dn4DooYEzO3L9j/dZuEqSuxsnHsWTvcRm+tspNekVi6izOoaEatFC5xZ9hYpMD2+I4 svUl/Mr6cZHQ9o6X6jokJeSoY7xReNJg4oal7rM8= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Adhemerval Zanella To: glibc-cvs@sourceware.org Subject: [glibc] build-many-glibcs: Fix traililing whitespace X-Act-Checkin: glibc X-Git-Author: Adhemerval Zanella X-Git-Refname: refs/heads/master X-Git-Oldrev: dd53a60282eaccf0eca2c98d147e22abd752c45e X-Git-Newrev: 1e6ecd21e8a214a6848c8dd6c070c5d97dac7e31 Message-Id: <20231030160727.99E293858D20@sourceware.org> Date: Mon, 30 Oct 2023 16:07:27 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=1e6ecd21e8a214a6848c8dd6c070c5d97dac7e31 commit 1e6ecd21e8a214a6848c8dd6c070c5d97dac7e31 Author: Adhemerval Zanella Date: Mon Oct 30 13:03:28 2023 -0300 build-many-glibcs: Fix traililing whitespace From commit d846c2838942297c9644f2f38bdad0fb88f42245. Diff: --- scripts/build-many-glibcs.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py index edea52bbae..18b73d71cf 100755 --- a/scripts/build-many-glibcs.py +++ b/scripts/build-many-glibcs.py @@ -1943,7 +1943,7 @@ def check_for_required_tools(): get_list_of_required_tools() count_old_tools = 0 count_missing_tools = 0 - + for k, v in REQUIRED_TOOLS.items(): version = v[0](k) if version == 'missing': @@ -1962,10 +1962,10 @@ def check_for_required_tools(): count_missing_tools = count_missing_tools + 1 print('{:9}: {:3} (required=\"{}\")'.format(k, ok, version_str(v[1]))) - + if count_old_tools > 0 or count_missing_tools > 0: exit (1); - + def main(argv): """The main entry point.""" check_for_required_tools();