From 2961adb8c89fa8ccfbc8e24cd9f1115bd3abeee1 Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Fri, 30 Sep 2022 14:46:10 -0400 Subject: Compilers: Keep ccache and exelist separated Only combine them in the Compiler base class, this will make easier to run compiler without ccache. --- mesonbuild/compilers/vala.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mesonbuild/compilers/vala.py') diff --git a/mesonbuild/compilers/vala.py b/mesonbuild/compilers/vala.py index 14bc39b..e56a9fc 100644 --- a/mesonbuild/compilers/vala.py +++ b/mesonbuild/compilers/vala.py @@ -33,7 +33,7 @@ class ValaCompiler(Compiler): def __init__(self, exelist: T.List[str], version: str, for_machine: MachineChoice, is_cross: bool, info: 'MachineInfo'): - super().__init__(exelist, version, for_machine, info, is_cross=is_cross) + super().__init__([], exelist, version, for_machine, info, is_cross=is_cross) self.version = version self.base_options = {OptionKey('b_colorout')} -- cgit v1.1