Skip to content

Commit a6eb70c

Browse files
committed
[lldb] Return empty string from getExtraMakeArgs when not implemented
No return statement means the method returns None which breaks a list comprehension down the line that expects a str instance.
1 parent 8750d54 commit a6eb70c

File tree

1 file changed

+1
-0
lines changed
  • lldb/packages/Python/lldbsuite/test/builders

1 file changed

+1
-0
lines changed

lldb/packages/Python/lldbsuite/test/builders/builder.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ def getExtraMakeArgs(self):
2525
Helper function to return extra argumentsfor the make system. This
2626
method is meant to be overridden by platform specific builders.
2727
"""
28+
return ""
2829

2930
def getArchCFlags(self, architecture):
3031
"""Returns the ARCH_CFLAGS for the make system."""

0 commit comments

Comments
 (0)