GNOME Bugzilla – Bug 786859
Wrong check for libm in meson.build
Last modified: 2018-01-24 17:44:30 UTC
Created attachment 358510 [details] [review] Proposed patch The test should be: diff --git a/meson.build b/meson.build index 099ffc18..544f40e2 100644 --- a/meson.build +++ b/meson.build @@ -98,7 +98,7 @@ gio_unix = dependency('gio-unix-2.0') gmodule = dependency('gmodule-2.0') gtk = dependency('gtk+-3.0', version : '>= 3.20.0') json_glib = dependency('json-glib-1.0', version : '>= 1.1.1') -libm = cc.find_library('libm', required: false) +libm = cc.find_library('m', required: false) libsecret = dependency('libsecret-1') libsoup = dependency('libsoup-2.4', version : '>= 2.51.92') sqlite3 = dependency('sqlite3') otherwise meson checks for liblibm, which does not exist.
Comment on attachment 358510 [details] [review] Proposed patch Looks fine, please just commit obviously correct things like this without asking -- I'm pretty chilled out :) Thanks dude.
Sure, I'll try to remember that in the future ;)
-- GitLab Migration Automatic Message -- This bug has been migrated to GNOME's GitLab instance and has been closed from further activity. You can subscribe and participate further through the new bug through this link to our GitLab instance: https://gitlab.gnome.org/GNOME/gnome-software/issues/219.