diff --git a/kiwixbuild/configs/winbash.py b/kiwixbuild/configs/winbash.py index b957608..66ed0b1 100644 --- a/kiwixbuild/configs/winbash.py +++ b/kiwixbuild/configs/winbash.py @@ -18,7 +18,7 @@ class WinBashConfigInfo(ConfigInfo): return sysconfig.get_platform() @property - def config_wrapper(self): + def configure_wrapper(self): yield "C:\\Program Files\\Git\\bin\\bash.exe" @property diff --git a/kiwixbuild/dependencies/xapian.py b/kiwixbuild/dependencies/xapian.py index d376152..3b2707b 100644 --- a/kiwixbuild/dependencies/xapian.py +++ b/kiwixbuild/dependencies/xapian.py @@ -20,7 +20,7 @@ class Xapian(Dependency): compile_script = self.source_path / "compile" return [ 'CC="cl -nologo"', - 'CXX=f"{compile_script} cl -nologo"', + f'CXX="{compile_script} cl -nologo"', "CXXFLAGS=-EHsc", "AR=lib", ]