From 9ae85e5c6883d84d12081ddc72d80adad387c2b4 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Wed, 21 May 2025 17:10:17 -0400 Subject: [PATCH] Meta: Avoid manual formation of user-variables.cmake path We're using python specifically to be platform-independent. --- Meta/ladybird.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Meta/ladybird.py b/Meta/ladybird.py index a39da0c4261..498bb2b9bba 100755 --- a/Meta/ladybird.py +++ b/Meta/ladybird.py @@ -265,7 +265,7 @@ def configure_skia_jemalloc() -> list[str]: if pkg_config: cmake_args.append(f"-DPKG_CONFIG_EXECUTABLE={pkg_config}") - user_vars_cmake_module = Path("Meta/CMake/vcpkg/user-variables.cmake") + user_vars_cmake_module = Path("Meta", "CMake", "vcpkg", "user-variables.cmake") user_vars_cmake_module.parent.mkdir(parents=True, exist_ok=True) with open(user_vars_cmake_module, "w") as f: