From 60c2de3f8ca9c3c589f4e078a18562544c5f6597 Mon Sep 17 00:00:00 2001 From: Boris Faure Date: Mon, 14 Aug 2023 15:10:53 +0200 Subject: [PATCH] meson: let inspect return code or run_command() --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 2b9f8c55..1915335b 100644 --- a/meson.build +++ b/meson.build @@ -116,7 +116,7 @@ if edje_cc == '' edje_cc = edje_cc_path endif -res = run_command(edje_cc, meson.current_source_dir() + '/data/test_offscale.edc') +res = run_command(edje_cc, meson.current_source_dir() + '/data/test_offscale.edc', check: false) if res.returncode() == 0 message('edje_cc has support for offscale') edje_offscale='-DHAS_OFFSCALE=1'