From 5bbda937f1c973ca6164950d78671403a8a643b0 Mon Sep 17 00:00:00 2001 From: Allan McRae Date: Sun, 6 Mar 2022 15:07:57 +1000 Subject: [PATCH] Silence meson warning about extract_all_objects Upstream is changing the default from false to true. This makes no difference to us, so just set as the future default. Signed-off-by: Allan McRae --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 78663ff3..563e9ab6 100644 --- a/meson.build +++ b/meson.build @@ -312,7 +312,7 @@ libalpm_a = static_library( 'alpm_objlib', libalpm_sources, # https://github.com/mesonbuild/meson/issues/3937 - objects : libcommon.extract_all_objects(), + objects : libcommon.extract_all_objects(recursive: true), include_directories : includes, gnu_symbol_visibility : 'hidden', dependencies : alpm_deps)