mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
build: Remove incorrect to_int() calls in meson.build
They’re called on assignment to these variables. Signed-off-by: Philip Withnall <withnall@endlessm.com> https://bugzilla.gnome.org/show_bug.cgi?id=793288
This commit is contained in:
parent
b716660fab
commit
04b3ce7255
@ -1649,8 +1649,8 @@ if want_systemtap and enable_dtrace
|
||||
endif
|
||||
stp_cdata = configuration_data()
|
||||
stp_cdata.set('ABS_GLIB_RUNTIME_LIBDIR', glib_libdir)
|
||||
stp_cdata.set('LT_CURRENT', minor_version.to_int() * 100)
|
||||
stp_cdata.set('LT_REVISION', micro_version.to_int())
|
||||
stp_cdata.set('LT_CURRENT', minor_version * 100)
|
||||
stp_cdata.set('LT_REVISION', micro_version)
|
||||
enable_systemtap = true
|
||||
endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user