From ee1fce0246879df4d6fc0b147e0433d5a1b3c32e Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Tue, 30 Apr 2024 17:09:49 +0200 Subject: [PATCH] Try to not protect space in CC --- kiwixbuild/dependencies/xapian.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kiwixbuild/dependencies/xapian.py b/kiwixbuild/dependencies/xapian.py index 70b5c78..fd8e71e 100644 --- a/kiwixbuild/dependencies/xapian.py +++ b/kiwixbuild/dependencies/xapian.py @@ -19,8 +19,8 @@ class Xapian(Dependency): if neutralEnv("distname") == "Windows": compile_script = win_to_posix_path(self.source_path / "compile") return [ - f'CC="{compile_script} cl -nologo"', - f'CXX="{compile_script} cl -nologo"', + f"CC={compile_script} cl -nologo", + f"CXX={compile_script} cl -nologo", "CXXFLAGS=-EHsc", "AR=lib", ]