Clarify error message when trying to compile Vala without C.

pull/318/head
Jussi Pakkanen 10 years ago
parent 278339855d
commit 2024d9d237
  1. 2
      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

Loading…
Cancel
Save