diff options
Diffstat (limited to 'configure.py')
-rwxr-xr-x | configure.py | 2 |
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): """ |