[lldb] Return empty string from getExtraMakeArgs when not implemented
authorJonas Devlieghere <jonas@devlieghere.com>
Thu, 20 Aug 2020 00:51:50 +0000 (17:51 -0700)
committerJonas Devlieghere <jonas@devlieghere.com>
Thu, 20 Aug 2020 00:52:50 +0000 (17:52 -0700)
No return statement means the method returns None which breaks a list
comprehension down the line that expects a str instance.

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

index 4a89851..fbfa867 100644 (file)
@@ -25,6 +25,7 @@ class Builder:
         Helper function to return extra argumentsfor the make system. This
         method is meant to be overridden by platform specific builders.
         """
+        return ""
 
     def getArchCFlags(self, architecture):
         """Returns the ARCH_CFLAGS for the make system."""