From bb32349c9776b31861a6b68ddb5c0187f7223d2c Mon Sep 17 00:00:00 2001 From: Kenny Levinsen Date: Mon, 28 Mar 2022 18:08:40 +0200 Subject: [PATCH] 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. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index f7fb659c..554fbc42 100644 --- a/meson.build +++ b/meson.build @@ -169,7 +169,7 @@ symbols_file = 'wlroots.syms' symbols_flag = '-Wl,--version-script,@0@/@1@'.format(meson.current_source_dir(), symbols_file) lib_wlr = library( meson.project_name(), wlr_files, - soversion: soversion, + soversion: soversion.to_string(), dependencies: wlr_deps, include_directories: [wlr_inc, proto_inc], install: true,