about summary refs log tree commit diff
path: root/scripts
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2019-11-28 17:22:22 +0000
committerJoseph Myers <joseph@codesourcery.com>2019-11-28 17:22:22 +0000
commitcdf203668eedb50db09f66cff494d44178d37131 (patch)
tree7a20a5b5ce825341dcdedf2fb1bb993818a45261 /scripts
parentaa9452a3b19e414678062c65ff7a2133482d62c3 (diff)
downloadglibc-cdf203668eedb50db09f66cff494d44178d37131.tar.gz
glibc-cdf203668eedb50db09f66cff494d44178d37131.tar.xz
glibc-cdf203668eedb50db09f66cff494d44178d37131.zip
Fix syntax error in build-many-glibcs.py.
The recent SPARC changes caused a syntax error:

    'ccopts': '-m32 -mlong-double-128 -mcpu=v9'}],
                                                ^
SyntaxError: invalid syntax

Fixed by this patch.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/build-many-glibcs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py
index f4d66838b1..34c933acbc 100755
--- a/scripts/build-many-glibcs.py
+++ b/scripts/build-many-glibcs.py
@@ -359,7 +359,7 @@ class Context(object):
                         os_name='linux-gnu',
                         glibcs=[{},
                                 {'arch': 'sparcv8',
-                                 'ccopts': '-m32 -mlong-double-128 -mcpu=leon3'}],
+                                 'ccopts': '-m32 -mlong-double-128 -mcpu=leon3'},
                                 {'arch': 'sparcv9',
                                  'ccopts': '-m32 -mlong-double-128 -mcpu=v9'}],
                         extra_glibcs=[{'variant': 'disable-multi-arch',