From f1d4e11f45360541b13d3d2c3f14690b8071ef81 Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Sun, 19 Feb 2023 14:25:44 -0800 Subject: [PATCH] Utilities: adjust install rules for apple/swift-llbuild#852 The libllbuild library has been converted into a static product and interalised into libllbuildSwift. This avoids the distribution issues here. Remove the library from the install set. --- Utilities/build-script-helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Utilities/build-script-helper.py b/Utilities/build-script-helper.py index 7aebc962d..a4d0074b6 100755 --- a/Utilities/build-script-helper.py +++ b/Utilities/build-script-helper.py @@ -340,7 +340,7 @@ def install_libraries(args, build_dir, universal_lib_dir, toolchain_lib_dir, tar # Install the llbuild core shared libraries into the toolchain lib package_subpath = os.path.join(args.configuration, 'dependencies', 'llbuild') - for lib in ['libllbuildSwift', 'libllbuild']: + for lib in ['libllbuildSwift']: install_library(args, build_dir, package_subpath, lib, shared_lib_ext, universal_lib_dir, toolchain_lib_dir,'llbuild', targets)