summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorMart Raudsepp <leio@gentoo.org>2018-12-15 20:50:34 +0200
committerMart Raudsepp <leio@gentoo.org>2018-12-15 20:51:43 +0200
commit4fba51c82d855426ad73f8215d0ed7bfdfa4fae2 (patch)
treee4097834d6a13684c6a0ec3860ce736ef4fcea3a /meson.build
parent124fff31ee90ac94c7de2d33622e46c52bc8a999 (diff)
downloadtotem-4fba51c82d855426ad73f8215d0ed7bfdfa4fae2.tar.gz
build: Fix error message with -Denable-vala without vala found
Fixes ERROR: Unknown variable "vala_options" to ERROR: Problem encountered: you need vala >= 0.14.1 installed to use vala plugins by correcting a typo.
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index c0679d25e..5647376fa 100644
--- a/meson.build
+++ b/meson.build
@@ -230,7 +230,7 @@ if vala_option != 'no'
endif
if not have_vala
- if vala_options == 'yes' or introspection_option == 'yes'
+ if vala_option == 'yes' or introspection_option == 'yes'
error(str)
endif
message(str)