aboutsummaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-12-10 16:28:22 -0500
committerJack Lloyd <[email protected]>2017-12-10 16:28:22 -0500
commit4f2ad34ea2cb24e2310dce4e7b3f3f9b19c090f5 (patch)
treef4355bae0d9d8c918711d668e33972d0cd42a1b0 /configure.py
parenta299f08b004460a93fd89156c1e20807ad35645d (diff)
Simplify this construct
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py
index abcaa6619..0874db879 100755
--- a/configure.py
+++ b/configure.py
@@ -1145,7 +1145,7 @@ class CompilerInfo(InfoObject): # pylint: disable=too-many-instance-attributes
raise UserError('Compiler %s does not support %s' % (self.basename, isa))
flags.add(flagset)
- return ("".join([" %s" % f for f in sorted(flags)])).strip()
+ return " ".join(sorted(flags))
def gen_shared_flags(self, options):
"""