From 2024d9d237e5c588e626e721a1535bee3ee7bd2b Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Wed, 2 Dec 2015 00:07:56 +0200 Subject: Clarify error message when trying to compile Vala without C. --- interpreter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'interpreter.py') 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 -- cgit v1.1