From 8e69c6e492be1dcd034fdca6933540da16762163 Mon Sep 17 00:00:00 2001 From: Ahmed Sagdati Date: Mon, 23 Dec 2019 15:57:16 +0100 Subject: [PATCH] Fix invalid meson option --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 1ab1e0a7..3460188d 100644 --- a/meson.build +++ b/meson.build @@ -148,7 +148,7 @@ endif # --- Conditionally add subdirs --- # ------------------------------------- -if get_option('enable_tests') or get_option('enable_tests-ho') +if get_option('enable_tests') or get_option('enable_tests_ho') subdir('tests') endif