diff options
-rw-r--r-- | interpreter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/interpreter.py b/interpreter.py index 85d472e..46b9f05 100644 --- a/interpreter.py +++ b/interpreter.py @@ -1396,7 +1396,7 @@ class Interpreter(): langs = self.coredata.compilers.keys() if 'vala' in langs: if not 'c' in langs: - raise InterpreterException('Compiling Vala requires a C compiler') + raise InterpreterException('Compiling Vala requires C. Add C to your project languages and rerun Meson.') @noKwargs @stringArgs |