aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllan McRae <allan@archlinux.org>2022-03-06 15:07:57 +1000
committerAllan McRae <allan@archlinux.org>2022-03-06 15:07:57 +1000
commit5bbda937f1c973ca6164950d78671403a8a643b0 (patch)
tree2af3e013088712d10dc4eb528e002af4b2831b69
parent0a792843f9dce87d3f574aa61227f75c14f0bab4 (diff)
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 <allan@archlinux.org>
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
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)