This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch dev/dimmus/test
in repository efl.

View the commit online.

commit 9780311ceb1c6519981d2c8257bee64625a59a40
Author: dimmus <dmitri.chudi...@gmail.com>
AuthorDate: Mon Oct 7 14:55:02 2024 +0500

    meson: add check arguments to avoid warnings
---
 doc/meson.build                        | 2 +-
 src/benchmarks/eo/meson.build          | 2 +-
 src/bindings/mono/efl_mono/meson.build | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/doc/meson.build b/doc/meson.build
index d325d2f102..065f8e2b52 100644
--- a/doc/meson.build
+++ b/doc/meson.build
@@ -109,7 +109,7 @@ foreach text_filter_property : text_filter_properties
   font = text_filter_property[1]
   size = text_filter_property[2]
   name = text_filter_property[3]
-  filter_code = run_command('cat', meson.source_root() / 'src/examples/evas/filters/filter_'+name+'.lua'))
+  filter_code = run_command('cat', meson.source_root() / 'src/examples/evas/filters/filter_'+name+'.lua', check: false)
 
   doc_target += custom_target('preview_text_filters_'+name,
                   command: [
diff --git a/src/benchmarks/eo/meson.build b/src/benchmarks/eo/meson.build
index 971359ceb1..4dc4e4d793 100644
--- a/src/benchmarks/eo/meson.build
+++ b/src/benchmarks/eo/meson.build
@@ -14,5 +14,5 @@ eo_bench = executable('eo_bench',
 )
 
 benchmark('eo', eo_bench,
-  args: run_command('date','+%F_%s').stdout()
+  args: run_command('date','+%F_%s', check: false).stdout()
 )
diff --git a/src/bindings/mono/efl_mono/meson.build b/src/bindings/mono/efl_mono/meson.build
index 76714c3668..6b385c5237 100644
--- a/src/bindings/mono/efl_mono/meson.build
+++ b/src/bindings/mono/efl_mono/meson.build
@@ -9,7 +9,7 @@ mono_files += files(
 
 bash = find_program('bash')
 
-map = run_command('map_generate.sh').stdout()
+map = run_command('map_generate.sh', check: false).stdout()
 
 
 efl_libs = configuration_data()

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to