aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenny Levinsen <kl@kl.wtf>2022-03-28 16:28:00 +0200
committerKenny Levinsen <kl@kl.wtf>2022-03-28 16:28:00 +0200
commitd5539dead8f258390c90e27acdc9f60a0cc68f2a (patch)
tree972ffa4b4c0352397b9f8748f45480f0fd5439cf
parent845256009b0ef7fcf9d59ceaf769cc5e41200c15 (diff)
meson: library soversion arg should be string
muon, a meson implementation in C, is more strict with its types and revealed this discrepancy between meson behavior and documentation.
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 0f267a6..337a4ae 100644
--- a/meson.build
+++ b/meson.build
@@ -178,7 +178,7 @@ symbols_flag = '-Wl,--version-script,@0@/@1@'.format(meson.current_source_dir(),
lib = library(
'seat', # This results in the library being called 'libseat'
[ 'libseat/libseat.c', 'libseat/backend/noop.c' ],
- soversion: libseat_soversion,
+ soversion: '@0@'.format(libseat_soversion),
link_with: private_lib,
include_directories: [include_directories('.', 'include')],
install: true,