From c79e22b0958da2823652727720b6e5759372bad6 Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Mon, 20 May 2019 12:19:16 -0700 Subject: [PATCH] build: clean up the legacy paths The new XCTest build has been CMake based for ages. This places the Swift contents in a directory named swift in the build tree. Update the search path. --- Utilities/bootstrap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Utilities/bootstrap b/Utilities/bootstrap index daca4f806e3..3b0278b1ba6 100755 --- a/Utilities/bootstrap +++ b/Utilities/bootstrap @@ -1171,7 +1171,7 @@ def main(): # Add XCTest. for module_file in ["XCTest.swiftmodule", "XCTest.swiftdoc"]: - symlink_force(os.path.join(args.xctest_path, module_file), libincludedir) + symlink_force(os.path.join(args.xctest_path, 'swift', module_file), libincludedir) symlink_force(os.path.join(args.xctest_path, "libXCTest.so"), libswiftdir) return (libswiftdir, libincludedir)