From: Joseph Myers Date: Thu, 28 Nov 2019 17:22:22 +0000 (+0000) Subject: Fix syntax error in build-many-glibcs.py. X-Git-Tag: glibc-2.31~201 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cdf203668eedb50db09f66cff494d44178d37131;p=thirdparty%2Fglibc.git 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. --- diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py index f4d66838b1f..34c933acbc4 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',