Not sure why this didn't explode more massively, but this should fix the issue with the non-framework tests.
llvm-svn: 286254
if self.hasDarwinFramework():
include_stmt = "'#include <%s>' % os.path.join('LLDB', header)"
else:
- include_stmt = "'#include <%s>' % os.path.join(public_api_dir, header)"
+ include_stmt = "'#include <%s>' % os.path.join(" + public_api_dir + ", header)"
list = [eval(include_stmt) for header in public_headers if (
header.startswith("SB") and header.endswith(".h"))]
includes = '\n'.join(list)