From: Marcel Hollerbach Date: Mon, 27 Jul 2020 10:24:57 +0000 (+0200) Subject: build: warn of faulty check version X-Git-Tag: accepted/tizen/unified/20200729.165613~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4a3844b5d76dedcd7fc44fd41edaf93494214068;p=platform%2Fupstream%2Fefl.git build: warn of faulty check version Reviewed-by: Stefan Schmidt Differential Revision: https://phab.enlightenment.org/D12067 --- diff --git a/meson.build b/meson.build index 934aecd..6b82d60 100644 --- a/meson.build +++ b/meson.build @@ -596,6 +596,10 @@ subdir(join_paths('data')) if get_option('build-tests') check = dependency('check') + if (check.version() == '0.15.1') + error('There is a bug in check@0.15.1 which does not allow efl to be compiled with it. Please downgrade / upgrade or disable tests') + endif + test_env = environment() test_env.set('EFL_RUN_IN_TREE', '1')