diff options
author | Thomas Haller <thaller@redhat.com> | 2018-01-10 10:29:11 +0100 |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2018-01-10 12:31:44 +0100 |
commit | 349861ceec4085fd1f0ff0af8bcf873aa15ba611 (patch) | |
tree | 6543ad02add282e0c3c0a62d632d607f93659eaa /src/devices/bluetooth | |
parent | ec016f6b43f4f7727944d67e358e7dc01ee2e42d (diff) | |
download | NetworkManager-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 'src/devices/bluetooth')
-rw-r--r-- | src/devices/bluetooth/meson.build | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/devices/bluetooth/meson.build b/src/devices/bluetooth/meson.build index e1ce74b316..85d29c7621 100644 --- a/src/devices/bluetooth/meson.build +++ b/src/devices/bluetooth/meson.build @@ -14,10 +14,9 @@ deps = [ nm_dep ] -ldflags = [] -if have_version_script - ldflags += '-Wl,--version-script,@0@'.format(linker_script_devices) -endif +ldflags = [ + '-Wl,--version-script,@0@'.format(linker_script_devices), +] if enable_bluez5_dun sources += files('nm-bluez5-dun.c') |