summaryrefslogtreecommitdiff
path: root/libnm-util
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2018-01-10 10:29:11 +0100
committerThomas Haller <thaller@redhat.com>2018-01-10 12:31:44 +0100
commit349861ceec4085fd1f0ff0af8bcf873aa15ba611 (patch)
tree6543ad02add282e0c3c0a62d632d607f93659eaa /libnm-util
parentec016f6b43f4f7727944d67e358e7dc01ee2e42d (diff)
downloadNetworkManager-349861ceec4085fd1f0ff0af8bcf873aa15ba611.tar.gz
build/meson: unconditionally use linker version scripts
We also unconditionally use them with autotools. Also, the detection for have_version_script does not seem correct to me. At least, it didn't work with clang.
Diffstat (limited to 'libnm-util')
-rw-r--r--libnm-util/meson.build7
1 files changed, 3 insertions, 4 deletions
diff --git a/libnm-util/meson.build b/libnm-util/meson.build
index db2bb44f39..3cd53d9e74 100644
--- a/libnm-util/meson.build
+++ b/libnm-util/meson.build
@@ -110,10 +110,9 @@ cflags = common_cflags + [
symbol_map = join_paths(meson.current_source_dir(), 'libnm-util.ver')
-ldflags = []
-if have_version_script
- ldflags += '-Wl,--version-script,@0@'.format(symbol_map)
-endif
+ldflags = [
+ '-Wl,--version-script,@0@'.format(symbol_map),
+]
libnm_util = shared_library(
'nm-util',