about summary refs log tree commit diff
path: root/scripts
diff options
context:
space:
mode:
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>2023-10-30 13:03:28 -0300
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>2023-10-30 13:03:37 -0300
commit1e6ecd21e8a214a6848c8dd6c070c5d97dac7e31 (patch)
treed8932968811fb37ce8043738550db42759aa7826 /scripts
parentdd53a60282eaccf0eca2c98d147e22abd752c45e (diff)
downloadglibc-1e6ecd21e8a214a6848c8dd6c070c5d97dac7e31.tar.gz
glibc-1e6ecd21e8a214a6848c8dd6c070c5d97dac7e31.tar.xz
glibc-1e6ecd21e8a214a6848c8dd6c070c5d97dac7e31.zip
build-many-glibcs: Fix traililing whitespace
From commit d846c2838942297c9644f2f38bdad0fb88f42245.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/build-many-glibcs.py6
1 files 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();