From 02b5ab385a1f69e19bf0b608241e56810b69071e Mon Sep 17 00:00:00 2001 From: Bernard Niset Date: Wed, 6 Aug 2025 21:38:59 +0200 Subject: [PATCH] Meta: Generate correct format for user-variables.cmake --- Meta/ladybird.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Meta/ladybird.py b/Meta/ladybird.py index 8aa4f9dd6c3..67278329a87 100755 --- a/Meta/ladybird.py +++ b/Meta/ladybird.py @@ -240,9 +240,9 @@ def configure_skia_jemalloc() -> list[str]: with open(user_vars_cmake_module, "w") as f: f.writelines( [ - f"set(PKGCONFIG {pkg_config})", - f"set(GN {gn})", - "", + f"set(PKGCONFIG {pkg_config})\n", + f"set(GN {gn})\n", + "\n", ] )