[dconf/fix/build: 3/3] build: Update use of link_whole for meson-0.52



commit c5c81a9288807682b372d498ef8504ce5fbf0ace
Author: Diego Escalante Urrelo <diegoe gnome org>
Date:   Thu Oct 31 05:51:22 2019 -0500

    build: Update use of link_whole for meson-0.52
    
    meson has changed some behavior in link_with/link_whole, using
    link_whole internally leads to duplicate symbols.
    
    See: https://github.com/mesonbuild/meson/pull/6030
    Fixes: https://gitlab.gnome.org/GNOME/dconf/issues/59

 common/meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/common/meson.build b/common/meson.build
index 58e0fa8..61af2f9 100644
--- a/common/meson.build
+++ b/common/meson.build
@@ -28,7 +28,7 @@ libdconf_common = static_library(
 
 libdconf_common_dep = declare_dependency(
   dependencies: glib_dep,
-  link_whole: libdconf_common,
+  link_with: libdconf_common,
 )
 
 libdconf_common_hidden = static_library(


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]