]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
build-many-glibcs: Fix traililing whitespace
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>
Mon, 30 Oct 2023 16:03:28 +0000 (13:03 -0300)
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>
Mon, 30 Oct 2023 16:03:37 +0000 (13:03 -0300)
From commit d846c2838942297c9644f2f38bdad0fb88f42245.

scripts/build-many-glibcs.py

index edea52bbae87de08edb7f501852574759a3cf64d..18b73d71cf333a497f11bf263347f86c62191ad0 100755 (executable)
@@ -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();