meson: 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.
master
Kenny Levinsen 3 years ago
parent dd03d839ab
commit bb32349c97

@ -169,7 +169,7 @@ symbols_file = 'wlroots.syms'
symbols_flag = '-Wl,--version-script,@0@/@1@'.format(meson.current_source_dir(), symbols_file) symbols_flag = '-Wl,--version-script,@0@/@1@'.format(meson.current_source_dir(), symbols_file)
lib_wlr = library( lib_wlr = library(
meson.project_name(), wlr_files, meson.project_name(), wlr_files,
soversion: soversion, soversion: soversion.to_string(),
dependencies: wlr_deps, dependencies: wlr_deps,
include_directories: [wlr_inc, proto_inc], include_directories: [wlr_inc, proto_inc],
install: true, install: true,

Loading…
Cancel
Save