Skip to content

Commit e470f93

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent e7379df commit e470f93

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/scripts/ci_build_cairo.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,13 +167,13 @@ def main():
167167
existing_pc = env_vars.get("PKG_CONFIG_PATH", "")
168168
merged_pc = ":".join([p for p in pkgconfig_paths if p]) + (f":{existing_pc}" if existing_pc else "")
169169
env_vars["PKG_CONFIG_PATH"] = merged_pc
170-
170+
171171
# Ensure compiler & linker flags include brew include/lib
172172
existing_cflags = env_vars.get("CFLAGS", "")
173173
existing_ldflags = env_vars.get("LDFLAGS", "")
174174
env_vars["CFLAGS"] = f"-I{brew_prefix}/include {existing_cflags}".strip()
175175
env_vars["LDFLAGS"] = f"-L{brew_prefix}/lib {existing_ldflags}".strip()
176-
176+
177177
# Debugging: log environment keys relevant to detection
178178
logger.info(f"env vars for meson: {env_vars}")
179179

0 commit comments

Comments
 (0)