Meta: Generate correct format for user-variables.cmake

This commit is contained in:
Bernard Niset 2025-08-06 21:38:59 +02:00 committed by Tim Flynn
commit 02b5ab385a
Notes: github-actions[bot] 2025-08-06 20:33:19 +00:00

View file

@ -240,9 +240,9 @@ def configure_skia_jemalloc() -> list[str]:
with open(user_vars_cmake_module, "w") as f: with open(user_vars_cmake_module, "w") as f:
f.writelines( f.writelines(
[ [
f"set(PKGCONFIG {pkg_config})", f"set(PKGCONFIG {pkg_config})\n",
f"set(GN {gn})", f"set(GN {gn})\n",
"", "\n",
] ]
) )