From c900ee74d3d65e3e415b7cf37c2d90579bcaf88d 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 4d66ddd56c0..4725d004df1 100755 --- a/Utilities/bootstrap +++ b/Utilities/bootstrap @@ -1165,7 +1165,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)