mercury: flag_handler: fix incorrect indent on return statement (#23579)

This commit is contained in:
eugeneswalker 2021-05-11 17:34:38 -07:00 committed by GitHub
parent 1d3a4820f6
commit edd35eae71
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -63,7 +63,7 @@ def flag_handler(self, name, flags):
if self.spec.satisfies('%cce'):
if name == 'ldflags':
flags.append('-Wl,-z,muldefs')
return (None, None, flags)
return (None, None, flags)
def cmake_args(self):
"""Populate cmake arguments for Mercury."""