diff options
author | Emmanuele Bassi <ebassi@gnome.org> | 2017-04-18 15:16:28 +0100 |
---|---|---|
committer | Emmanuele Bassi <ebassi@gnome.org> | 2017-05-03 15:10:56 +0100 |
commit | e18d9a85cae81a06a5c8106bf41562487a62610a (patch) | |
tree | 9cf066174d8a1e44a9d707e2f2ea7377ae7c7c9e /gsk | |
parent | 482f34006e6c9709a2f5a219ab6bcc5ff70e1aa0 (diff) | |
download | gtk+-e18d9a85cae81a06a5c8106bf41562487a62610a.tar.gz |
build: Use the common linker flags in GDK and GSK
Instead of hard-coding `-Bsymbolic`.
Diffstat (limited to 'gsk')
-rw-r--r-- | gsk/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gsk/meson.build b/gsk/meson.build index 3ebcda9e95..28420127dc 100644 --- a/gsk/meson.build +++ b/gsk/meson.build @@ -159,7 +159,7 @@ libgsk = static_library('gsk', include_directories: [confinc], c_args: ['-DGSK_COMPILATION', '-DG_LOG_DOMAIN="Gsk"'] + common_cflags, link_with: libgdk, - link_args: ['-Bsymbolic']) + link_args: common_ldflags) # We don't have link_with: to internal static libs here on purpose, just # list the dependencies and generated headers and such, for use in the |