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:
Philip Withnall 2018-02-12 12:28:28 +00:00
parent b716660fab
commit 04b3ce7255

View File

@ -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