Silence meson warning about extract_all_objects

Message ID 20220306050857.768005-1-allan@archlinux.org
State Accepted, archived
Headers show
Series Silence meson warning about extract_all_objects | expand

Commit Message

Allan McRae March 6, 2022, 5:08 a.m. UTC
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 <allan@archlinux.org>
---
 meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Patch

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)